1 | <?php |
||
16 | class FetchMethods extends NodeVisitorAbstract |
||
17 | { |
||
18 | /** @var Node\Stmt\ClassMethod[] */ |
||
19 | private $methods = []; |
||
20 | |||
21 | /** |
||
22 | * {@inheritDoc} |
||
23 | */ |
||
24 | public function leaveNode(Node $node) |
||
32 | |||
33 | /** |
||
34 | * @return Node\Stmt\ClassMethod[] |
||
35 | */ |
||
36 | public function getMethods(): array |
||
40 | } |
||
41 |