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