1 | <?php |
||
31 | class PostConstructPointCut extends CommonPointCut implements PointCutable |
||
32 | { |
||
33 | /** @var string */ |
||
34 | protected $annotation = PostConstruct::class; |
||
35 | |||
36 | /** |
||
37 | * @param Container $app |
||
38 | * |
||
39 | * @return \Ray\Aop\Pointcut |
||
40 | */ |
||
41 | public function configure(Container $app): Pointcut |
||
49 | } |
||
50 |