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

getKey() public method

public getKey ( ) : null | string
return null | string
    public function getKey()
    {
        return $this->key;
    }

Usage Example

 public function testCustomKeyCanBePassed()
 {
     $metadata = new PropertyAnnotationMetadata('string', 'dob');
     $this->assertEquals('dob', $metadata->getKey());
 }