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

__construct() public method

public __construct ( $type, $key = null, $nullable = null )
    public function __construct($type, $key = null, $nullable = null)
    {
        $this->type = $type;
        $this->key = $key;
        $this->nullable = null !== $nullable ? (bool) $nullable : true;
    }