mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-23 19:24:48 +01:00
21 lines
460 B
PHP
21 lines
460 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Rector\Core\Tests\Issues\Issue1242;
|
|
|
|
use Rector\Core\Testing\PHPUnit\AbstractRectorTestCase;
|
|
|
|
final class Issue1242Test extends AbstractRectorTestCase
|
|
{
|
|
public function test(): void
|
|
{
|
|
$this->doTestFile(__DIR__ . '/Fixture/fixture1242.php.inc');
|
|
}
|
|
|
|
protected function provideConfig(): string
|
|
{
|
|
return __DIR__ . '/../../../config/set/twig/twig-underscore-to-namespace.yaml';
|
|
}
|
|
}
|