rector/tests/Exclusion/Check/Fixture/fixture.php.inc
2019-10-03 10:03:36 +02:00

30 lines
284 B
PHP

<?php
namespace Rector\Tests\Rector\Exclusion\Check\Fixture1;
final class SomeController
{
public function foo()
{
}
public function bar()
{
}
}
?>
-----
<?php
namespace Rector\Tests\Rector\Exclusion\Check\Fixture1;
final class SomeController
{
}
?>