public function StaticReflectionParser::__construct in Drupal 9
Parses a class residing in a PSR-0 hierarchy.
Parameters
string $className The full, namespaced class name.:
ClassFinderInterface $finder A ClassFinder object which finds the class.:
bool $classAnnotationOptimize Only retrieve the class docComment.: Presumes there is only one statement per line.
File
- core/
lib/ Drupal/ Component/ Annotation/ Doctrine/ StaticReflectionParser.php, line 143 - This class is a near-copy of Doctrine\Common\Reflection\StaticReflectionParser, which is part of the Doctrine project: <http://www.doctrine-project.org>. It was copied from version 1.2.2.
Class
- StaticReflectionParser
- Parses a file for namespaces/use/class declarations.
Namespace
Drupal\Component\Annotation\DoctrineCode
public function __construct($className, $finder, $classAnnotationOptimize = false) {
$this->className = ltrim($className, '\\');
$lastNsPos = strrpos($this->className, '\\');
if ($lastNsPos !== false) {
$this->namespace = substr($this->className, 0, $lastNsPos);
$this->shortClassName = substr($this->className, $lastNsPos + 1);
}
else {
$this->shortClassName = $this->className;
}
$this->finder = $finder;
$this->classAnnotationOptimize = $classAnnotationOptimize;
}