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