You are here

public function StaticReflectionParser::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/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

vendor/doctrine/common/lib/Doctrine/Common/Reflection/StaticReflectionParser.php, line 107

Class

StaticReflectionParser
Parses a file for namespaces/use/class declarations.

Namespace

Doctrine\Common\Reflection

Code

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;
}