2019-10-13 07:59:52 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2019-03-27 14:26:13 +01:00
|
|
|
|
2020-02-06 22:48:18 +01:00
|
|
|
namespace Rector\Core\Tests\Issues\Issue1242;
|
2019-03-27 14:26:13 +01:00
|
|
|
|
2020-02-06 22:48:18 +01:00
|
|
|
use Rector\Core\Testing\PHPUnit\AbstractRectorTestCase;
|
2019-03-27 14:26:13 +01:00
|
|
|
|
|
|
|
final class Issue1242Test extends AbstractRectorTestCase
|
|
|
|
{
|
|
|
|
public function test(): void
|
|
|
|
{
|
2019-09-06 12:30:58 +02:00
|
|
|
$this->doTestFile(__DIR__ . '/Fixture/fixture1242.php.inc');
|
2019-03-27 14:26:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function provideConfig(): string
|
|
|
|
{
|
2019-06-08 22:41:52 +02:00
|
|
|
return __DIR__ . '/../../../config/set/twig/twig-underscore-to-namespace.yaml';
|
2019-03-27 14:26:13 +01:00
|
|
|
}
|
|
|
|
}
|