mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 03:35:01 +01:00
32 lines
519 B
PHP
32 lines
519 B
PHP
<?php
|
|
|
|
namespace Rector\Core\Tests\Rector\Exclusion\Check\DocBlockOnSelfNoRector;
|
|
|
|
|
|
final class SomeController
|
|
{
|
|
/**
|
|
* @noRector Rector\DeadCode\Rector\ClassMethod\RemoveEmptyClassMethodRector
|
|
*/
|
|
public function foo()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* @noRector \Rector\DeadCode\Rector\ClassMethod\RemoveEmptyClassMethodRector
|
|
*/
|
|
public function bar()
|
|
{
|
|
|
|
}
|
|
|
|
/** @noRector \Rector\DeadCode\Rector\ClassMethod\RemoveEmptyClassMethodRector */
|
|
public function baz()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
?>
|