mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 19:53:14 +01:00
19 lines
448 B
PHP
19 lines
448 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Rector\Tests\Issues\Issue1225;
|
|
|
|
use Rector\Testing\PHPUnit\AbstractRectorTestCase;
|
|
|
|
final class Issue1225Test extends AbstractRectorTestCase
|
|
{
|
|
public function test(): void
|
|
{
|
|
$this->doTestFiles([__DIR__ . '/Fixture/fixture1225.php']);
|
|
}
|
|
|
|
protected function provideConfig(): string
|
|
{
|
|
return __DIR__ . '/../../../config/set/twig/twig-underscore-to-namespace.yaml';
|
|
}
|
|
}
|