コード例 #1
0
ファイル: Test_Proxy.php プロジェクト: im286er/Ding
 /**
  * @MethodInterceptor(class-expression=ClassSimpleAOPAnnotation3,expression=someProtectedMethod)
  */
 public function methodInterceptorProtected(MethodInvocation $invocation)
 {
     $invocation->getObject()->something = 'protected';
     $invocation->proceed();
 }