isNullable() public method

public isNullable ( ) : boolean
return boolean
コード例 #1
0
 public function testNotNullableCanBeDefined()
 {
     $metadata = new PropertyAnnotationMetadata('string', null, false);
     $this->assertFalse($metadata->isNullable());
 }