public function StaticReflectionParser::__construct in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_annotation_discovery/lib/Doctrine/common/lib/Doctrine/Common/Reflection/StaticReflectionParser.php \Doctrine\Common\Reflection\StaticReflectionParser::__construct()
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.:
boolean $classAnnotationOptimize Only retrieve the class docComment.: Presumes there is only one statement per line.
File
- modules/
providers/ service_container_annotation_discovery/ lib/ Doctrine/ common/ lib/ Doctrine/ Common/ Reflection/ StaticReflectionParser.php, line 107
Class
- StaticReflectionParser
- Parses a file for namespaces/use/class declarations.
Namespace
Doctrine\Common\ReflectionCode
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;
}