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

getType() public method

public getType ( ) : string
return string
    public function getType()
    {
        return $this->type;
    }

Usage Example

 public function testInit()
 {
     $metadata = new PropertyAnnotationMetadata('string');
     $this->assertEquals('string', $metadata->getType());
 }