1 | <?php |
||
17 | final class AopTemplateConverter extends NodeVisitorAbstract |
||
18 | { |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | private $method; |
||
23 | |||
24 | /** |
||
25 | * @var Arg[] |
||
26 | */ |
||
27 | private $args = []; |
||
28 | |||
29 | private $proceedArg; |
||
30 | |||
31 | public function __construct(\ReflectionMethod $method) |
||
41 | |||
42 | public function enterNode(Node $node) |
||
53 | |||
54 | private function updateReflectiveMethodInvocation2ndParam(Node $node) : Node |
||
64 | } |
||
65 |