Skip to content

Commit

Permalink
fixup! fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Feb 6, 2019
1 parent e540e60 commit 70282e6
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace Rector\Sylius\Tests\Rector\Review;

use Rector\Sylius\Rector\Review\ReplaceCreateMethodWithoutReviewerRector;
use Rector\Sylius\Tests\Rector\Review\Source\ReviewFactoryInterface;
use Rector\Testing\PHPUnit\AbstractRectorTestCase;

final class ReplaceCreateMethodWithoutReviewerRectorTest extends AbstractRectorTestCase
Expand All @@ -17,10 +18,13 @@ public function getRectorClass(): string
return ReplaceCreateMethodWithoutReviewerRector::class;
}

/**
* @return mixed[]|null
*/
protected function getRectorConfiguration(): ?array
{
return [
'$reviewFactoryInterface' => \Rector\Sylius\Tests\Rector\Review\Source\ReviewFactoryInterface::class
'$reviewFactoryInterface' => ReviewFactoryInterface::class,
];
}
}

0 comments on commit 70282e6

Please sign in to comment.