GraphAware\Neo4j\OGM\Metadata\LabeledPropertyMetadata::__construct PHP Method

__construct() public method

public __construct ( string $propertyName, ReflectionProperty $reflectionProperty, Label $annotation )
$propertyName string
$reflectionProperty ReflectionProperty
$annotation GraphAware\Neo4j\OGM\Annotations\Label
    public function __construct($propertyName, \ReflectionProperty $reflectionProperty, Label $annotation)
    {
        $this->propertyName = $propertyName;
        $this->reflectionProperty = $reflectionProperty;
        $this->annotation = $annotation;
        $this->labelName = $annotation->name;
    }