mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 11:44:14 +01:00
32 lines
394 B
PHP
32 lines
394 B
PHP
<?php
|
|
|
|
namespace Rector\Tests\Rector\Exclusion\Check\DocBlockOnParentBaseLine;
|
|
|
|
|
|
final class SomeController
|
|
{
|
|
public function foo()
|
|
{
|
|
round(1 + 0);
|
|
round(1 + 0);
|
|
}
|
|
}
|
|
|
|
?>
|
|
-----
|
|
<?php
|
|
|
|
namespace Rector\Tests\Rector\Exclusion\Check\DocBlockOnParentBaseLine;
|
|
|
|
|
|
final class SomeController
|
|
{
|
|
public function foo()
|
|
{
|
|
round(1);
|
|
round(1);
|
|
}
|
|
}
|
|
|
|
?>
|