| 1 | <?php |
||
| 27 | abstract class AspectModule |
||
| 28 | { |
||
| 29 | /** @var array */ |
||
| 30 | protected $classes = []; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @codeCoverageIgnore |
||
| 34 | * @return PointCutable |
||
| 35 | */ |
||
| 36 | abstract public function registerPointCut(): PointCutable; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return string[] |
||
| 40 | */ |
||
| 41 | public function target(): array |
||
| 45 | } |
||
| 46 |