
Protected Member Functions | |
| createExtendedReflectionClass (ReflectionClass $objOriginalReflectionClass) | |
| createExtendedReflectionMethod (ReflectionMethod $objOriginalReflectionMethod) | |
| createExtendedReflectionFunction (ReflectionFunction $objOriginalReflectionFunction) | |
Definition at line 14 of file CodeInstrumentationParameter.class.php.
| createExtendedReflectionClass | ( | ReflectionClass $ | objOriginalReflectionClass | ) | [protected] |
Replace the original reflection class by the Code Instrumentation version of it
| ReflectionClass | $objOriginalReflectionClass |
Reimplemented from CodeReflectionParameter.
Definition at line 23 of file CodeInstrumentationParameter.class.php.
00024 { 00025 return new CodeInstrumentationClass( $objOriginalReflectionClass->getName() ); 00026 }
| createExtendedReflectionFunction | ( | ReflectionFunction $ | objOriginalReflectionFunction | ) | [protected] |
Replace the origianl reflection function of the parameters by the code instrumentation version of it
| ReflectionFunction | $objOriginalReflectionFunction |
Reimplemented from CodeReflectionParameter.
Definition at line 47 of file CodeInstrumentationParameter.class.php.
00048 { 00049 if( $objOriginalReflectionFunction instanceof ReflectionMethod ) 00050 { 00051 return new CodeInstrumentationMethod( $objOriginalReflectionFunction->getName() ); 00052 } 00053 else 00054 { 00055 return new CodeInstrumentationFunction( $objOriginalReflectionFunction->getName() ); 00056 } 00057 }
| createExtendedReflectionMethod | ( | ReflectionMethod $ | objOriginalReflectionMethod | ) | [protected] |
Replace the original reflection method by the Code Instrumentation version of it
| ReflectionMethod | $objOriginalReflectionMethod |
Reimplemented from CodeReflectionParameter.
Definition at line 35 of file CodeInstrumentationParameter.class.php.
00036 { 00037 return new CodeInstrumentationMethod( $this->getName() , $objOriginalReflectionMethod->getName() ); 00038 }
1.5.9