[2.0] DDC-318 - Fix successive calls to AnnotationDriver::getAllClassNames()
This commit is contained in:
parent
6bfbab9f7d
commit
6271245831
1 changed files with 11 additions and 0 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue