mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 19:53:14 +01:00
30 lines
284 B
PHP
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
|
|
{
|
|
}
|
|
|
|
?>
|