Changeset 1070
- Timestamp:
- 11/27/07 00:22:45 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/reflection/stubReflectionMethod.php
r1016 r1070 63 63 public function hasAnnotation($annotationName) 64 64 { 65 return stubAnnotationFactory::has($this->docComment, $annotationName, stubAnnotation::TARGET_METHOD, $this->className .'::'.$this->methodName, $this->getFileName());65 return stubAnnotationFactory::has($this->docComment, $annotationName, stubAnnotation::TARGET_METHOD, $this->className . '::' . $this->methodName . '()', $this->getFileName()); 66 66 } 67 67 … … 75 75 public function getAnnotation($annotationName) 76 76 { 77 return stubAnnotationFactory::create($this->docComment, $annotationName, stubAnnotation::TARGET_METHOD, $this->className .'::'.$this->methodName, $this->getFileName());77 return stubAnnotationFactory::create($this->docComment, $annotationName, stubAnnotation::TARGET_METHOD, $this->className . '::' . $this->methodName . '()', $this->getFileName()); 78 78 } 79 79
