1 | <?php |
||
21 | final class BeforeInterceptor extends BaseInterceptor implements AdviceBefore |
||
22 | { |
||
23 | /** |
||
24 | * Before invoker for joinpoint |
||
25 | * |
||
26 | * @param Joinpoint $joinpoint the concrete joinpoint |
||
27 | * |
||
28 | * @return mixed the result of the call to {@link Joinpoint::proceed()}, |
||
29 | */ |
||
30 | public function invoke(Joinpoint $joinpoint) |
||
37 | } |
||
38 |