1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

[2.0] DDC-318 - Fix successive calls to AnnotationDriver::getAllClassNames()

This commit is contained in:
beberlei 2010-02-11 22:47:59 +00:00
parent 6bfbab9f7d
commit 6271245831

View file

@ -62,6 +62,11 @@ class AnnotationDriver implements Driver
* @var string * @var string
*/ */
protected $_fileExtension = '.php'; protected $_fileExtension = '.php';
/**
* @param array
*/
protected $_classNames = null;
/** /**
* Initializes a new AnnotationDriver that uses the given AnnotationReader for reading * Initializes a new AnnotationDriver that uses the given AnnotationReader for reading
@ -407,6 +412,10 @@ class AnnotationDriver implements Driver
*/ */
public function getAllClassNames() public function getAllClassNames()
{ {
if ($this->_classNames !== null) {
return $this->_classNames;
}
$classes = array(); $classes = array();
if ($this->_paths) { if ($this->_paths) {
@ -439,6 +448,8 @@ class AnnotationDriver implements Driver
} }
} }
} }
$this->_classNames = $classes;
return $classes; return $classes;
} }