Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
PROFeNoM committed Jan 22, 2025
1 parent 93065f1 commit 4ba0a8f
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 21 deletions.
2 changes: 1 addition & 1 deletion tests/Frameworks/Nette/Version_3_1/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"nette/robot-loader": "^3.1",
"nette/security": "^3.1",
"nette/utils": "^3.1",
"latte/latte": "^3.0",
"latte/latte": "^2.9",
"tracy/tracy": "^2.8"
},
"require-dev": {
Expand Down
1 change: 0 additions & 1 deletion tests/Integrations/Memcache/MemcacheTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace DDTrace\Tests\Integrations\Memcache;

use DDTrace\Integrations\SpanTaxonomy;
use DDTrace\Tag;
use DDTrace\Tests\Common\IntegrationTestCase;
use DDTrace\Tests\Common\SpanAssertion;
Expand Down
1 change: 0 additions & 1 deletion tests/Integrations/Memcached/MemcachedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace DDTrace\Tests\Integrations\Memcached;

use DDTrace\Integrations\SpanTaxonomy;
use DDTrace\Tag;
use DDTrace\Tests\Common\IntegrationTestCase;
use DDTrace\Tests\Common\SpanAssertion;
Expand Down
16 changes: 2 additions & 14 deletions tests/Integrations/MongoDB/Latest/MongoDBTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,15 @@

namespace DDTrace\Tests\Integrations\Mongo\Latest;

use DDTrace\Integrations\SpanTaxonomy;
use DDTrace\Tag;
use DDTrace\Tests\Common\IntegrationTestCase;
use DDTrace\Tests\Common\SpanAssertion;
use DDTrace\Tests\Integrations\Mongo\Utils\AnObject;
use DDTrace\Tests\Integrations\Mongo\Utils\AQuery;
use Exception;
use MongoDB\Client;
use stdClass;

class AQuery
{
public $brand;

public function __construct($brand = 'ferrari')
{
$this->brand = $brand;
}
}

class AnObject
{
}

class MongoDBTest extends IntegrationTestCase
{
Expand Down
17 changes: 17 additions & 0 deletions tests/Integrations/MongoDB/Utils.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

namespace DDTrace\Tests\Integrations\Mongo\Utils;

class AQuery
{
public $brand;

public function __construct($brand = 'ferrari')
{
$this->brand = $brand;
}
}

class AnObject
{
}
2 changes: 0 additions & 2 deletions tests/Integrations/MongoDB/V1_x/MongoDBTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace DDTrace\Tests\Integrations\Mongo\V1_x;

include __DIR__ . '/../Latest/MongoDBTest.php';

class MongoDBTest extends \DDTrace\Tests\Integrations\Mongo\Latest\MongoDBTest
{
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace DDTrace\Tests\Integrations\Yii\V2_0_49;

include __DIR__ . '/../Latest/YiiDetailsTest.php';

class LazyLoadingIntegrationsFromYiiTest extends \DDTrace\Tests\Integrations\Yii\Latest\LazyLoadingIntegrationsFromYiiTest
{
public static function getAppIndexScript()
Expand Down

0 comments on commit 4ba0a8f

Please sign in to comment.