GraphAware\Neo4j\OGM\Metadata\PropertyAnnotationMetadata::__construct PHP 메소드

__construct() 공개 메소드

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