pathEndIdentifierType() public method

If the key is incomplete, returns null. Example: $lastPathElementIdentifierType = $key->pathEndIdentifierType();
public pathEndIdentifierType ( ) : string | null
return string | null
コード例 #1
0
 public function testPathEndIdentifierTypeNull()
 {
     $key = new Key('foo', ['path' => [['kind' => 'foo', 'id' => 2], ['kind' => 'bar']]]);
     $this->assertNull($key->pathEndIdentifierType());
 }