GraphAware\Neo4j\OGM\Metadata\Factory\GraphEntityMetadataFactory::__construct PHP Method

__construct() public method

public __construct ( Doctrine\Common\Annotations\Reader $reader )
$reader Doctrine\Common\Annotations\Reader
    public function __construct(Reader $reader)
    {
        $this->reader = $reader;
        $this->nodeAnnotationMetadataFactory = new NodeAnnotationMetadataFactory($reader);
        $this->propertyAnnotationMetadataFactory = new PropertyAnnotationMetadataFactory($reader);
        $this->IdAnnotationMetadataFactory = new IdAnnotationMetadataFactory($reader);
        $this->relationshipEntityMetadataFactory = new RelationshipEntityMetadataFactory($reader);
    }
GraphEntityMetadataFactory