Skip to content

Commit

Permalink
Merge pull request #492 from greg0ire/ensure-deprecation-free
Browse files Browse the repository at this point in the history
Ensure 2.0.x is deprecation-free
  • Loading branch information
greg0ire authored Nov 4, 2024
2 parents 3a57490 + d43ee3d commit ea5b37c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
],
"require": {
"php": "^8.1",
"doctrine/deprecations": "^0.5.3 || ^1.0",
"doctrine/persistence": "^3.1",
"psr/log": "^1.1 || ^2 || ^3"
},
Expand Down
7 changes: 0 additions & 7 deletions tests/Common/DataFixtures/Executor/AbstractExecutorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,14 @@
use Doctrine\Common\DataFixtures\FixtureInterface;
use Doctrine\Common\DataFixtures\OrderedFixtureInterface;
use Doctrine\Common\DataFixtures\Purger\PurgerInterface;
use Doctrine\Deprecations\PHPUnit\VerifyDeprecations;
use Doctrine\Persistence\ObjectManager;
use PHPUnit\Framework\TestCase;
use Psr\Log\Test\TestLogger;

final class AbstractExecutorTest extends TestCase
{
use VerifyDeprecations;

public function testLogOnLoad(): void
{
$this->expectNoDeprecationWithIdentifier('https://github.com/doctrine/data-fixtures/pull/462');

$logger = new TestLogger();
$executor = $this->bootstrapExecutor();
$executor->setLogger($logger);
Expand All @@ -36,8 +31,6 @@ public function testLogOnLoad(): void

public function testLogOnPurge(): void
{
$this->expectNoDeprecationWithIdentifier('https://github.com/doctrine/data-fixtures/pull/462');

$logger = new TestLogger();
$executor = $this->bootstrapExecutor();
$executor->setLogger($logger);
Expand Down

0 comments on commit ea5b37c

Please sign in to comment.