1 | <?php |
||
20 | final class JoinPointPropertyGenerator extends PropertyGenerator |
||
21 | { |
||
22 | /** |
||
23 | * Default property name for storing join points in the class |
||
24 | */ |
||
25 | const NAME = '__joinPoints'; |
||
26 | |||
27 | /** |
||
28 | * JoinPointProperty constructor. |
||
29 | * |
||
30 | * @param array $advices List of advices to apply per class |
||
31 | * |
||
32 | * @throws \Zend\Code\Generator\Exception\InvalidArgumentException |
||
33 | */ |
||
34 | 9 | public function __construct(array $advices) |
|
42 | } |
||
43 |