| 1 | <?php |
||
| 12 | class TestAnnotation implements ConfigurablePassInterface, AnalyzerPassInterface |
||
| 13 | { |
||
| 14 | |||
| 15 | /** @var DocBlockFactory */ |
||
| 16 | protected $docBlockFactory; |
||
| 17 | |||
| 18 | 1 | public function __construct() |
|
| 22 | |||
| 23 | /** |
||
| 24 | * @param ClassMethod $methodStmt |
||
| 25 | * @param Context $context |
||
| 26 | * @return bool |
||
| 27 | */ |
||
| 28 | 24 | public function pass(ClassMethod $methodStmt, Context $context) |
|
| 53 | |||
| 54 | /** |
||
| 55 | * @return TreeBuilder |
||
| 56 | */ |
||
| 57 | public function getConfiguration() |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @return array |
||
| 69 | */ |
||
| 70 | 1 | public function getRegister() |
|
| 76 | } |
||
| 77 |