public function SimpleAnnotationReader::__construct

Constructor.

Initializes a new SimpleAnnotationReader.

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Annotations/SimpleAnnotationReader.php, line 46

Class

SimpleAnnotationReader
Simple Annotation Reader.

Namespace

Doctrine\Common\Annotations

Code

public function __construct() {
  $this->parser = new DocParser();
  $this->parser
    ->setIgnoreNotImportedAnnotations(true);
}