- Timestamp:
- 11/28/07 14:45:02 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/reflection/stubReflectionMethod.php
r1082 r1083 126 126 $refClass = parent::getDeclaringClass(); 127 127 if ($refClass->getName() === $this->className) { 128 if (null !== $this->refClass) {128 if (null === $this->refClass) { 129 129 $this->refClass = new stubReflectionClass($this->className); 130 130 } … … 147 147 $stubParameters = array(); 148 148 foreach ($parameters as $parameter) { 149 $stubParameters[] = new stubReflectionParameter( array($this->className, $this->methodName), $parameter->getName());149 $stubParameters[] = new stubReflectionParameter($this, $parameter->getName()); 150 150 } 151 151
