1 | <?php |
||
22 | final class JoinPointPropertyGenerator extends PropertyGenerator |
||
23 | { |
||
24 | /** |
||
25 | * Default property name for storing join points in the class |
||
26 | */ |
||
27 | public const NAME = '__joinPoints'; |
||
28 | |||
29 | /** |
||
30 | * JoinPointProperty constructor. |
||
31 | * |
||
32 | * @param array $adviceNames List of advices to apply per class |
||
33 | * |
||
34 | 10 | * @throws InvalidArgumentException |
|
35 | */ |
||
36 | 10 | public function __construct(array $adviceNames) |
|
44 | } |
||
45 |