Searched refs:classExists (Results 1 – 5 of 5) sorted by relevance
31 $classExists = class_exists($newClass = str_replace('_', '\\', $class)); variable32 if ($classExists) {
96 private $classExists = array(); variable in Doctrine\\Common\\Annotations\\DocParser457 private function classExists($fqcn) function in Doctrine\\Common\\Annotations\\DocParser459 if (isset($this->classExists[$fqcn])) {460 return $this->classExists[$fqcn];465 return $this->classExists[$fqcn] = true;469 return $this->classExists[$fqcn] = AnnotationRegistry::loadAnnotationClass($fqcn);708 if ($this->classExists($namespace.'\\'.$name)) {721 && $this->classExists($this->imports['__NAMESPACE__'] . '\\' . $name)725 } elseif (! isset($this->ignoredAnnotationNames[$name]) && $this->classExists($name)) {740 if ( ! $this->classExists($name)) {
148 Assert::classExists($handler);
879 public static function classExists($value, $message = '') function in Webmozart\\Assert\\Assert
178 `classExists($value, $message = '')` | Check that a value is an existing class name