예제 #1
0
파일: Test_Proxy.php 프로젝트: im286er/Ding
 /**
  * @MethodInterceptor(class-expression=ClassSimpleAOPAnnotation3,expression=someProtectedMethod)
  */
 public function methodInterceptorProtected(MethodInvocation $invocation)
 {
     $invocation->getObject()->something = 'protected';
     $invocation->proceed();
 }