rector/tests/NodeVisitor/DependencyInjection/InjectAnnotationToConstructorReconstructor/Test.php
TomasVotruba 71497ab319 cs fixes
2017-08-03 19:11:32 +02:00

17 lines
450 B
PHP

<?php declare(strict_types=1);
namespace Rector\Tests\NodeVisitor\DependencyInjection\InjectAnnotationToConstructorReconstructor;
use Rector\Testing\PHPUnit\AbstractReconstructorTestCase;
final class Test extends AbstractReconstructorTestCase
{
public function test(): void
{
$this->doTestFileMatchesExpectedContent(
__DIR__ . '/wrong/wrong.php.inc',
__DIR__ . '/correct/correct.php.inc'
);
}
}