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

isNullable() public method

public isNullable ( ) : boolean
return boolean
    public function isNullable()
    {
        return $this->nullable;
    }

Usage Example

 public function testNotNullableCanBeDefined()
 {
     $metadata = new PropertyAnnotationMetadata('string', null, false);
     $this->assertFalse($metadata->isNullable());
 }