Home
last modified time | relevance | path

Searched refs:fqcn (Results 1 – 1 of 1) sorted by relevance

/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocParser.php453 * @param string $fqcn
457 private function classExists($fqcn) argument
459 if (isset($this->classExists[$fqcn])) {
460 return $this->classExists[$fqcn];
464 if (class_exists($fqcn, false)) {
465 return $this->classExists[$fqcn] = true;
469 return $this->classExists[$fqcn] = AnnotationRegistry::loadAnnotationClass($fqcn);