keyObject() public method

Get the key object formatted for the datastore service.
public keyObject ( ) : array
return array
コード例 #1
0
ファイル: KeyTest.php プロジェクト: Radiergummi/anacronism
 public function testJsonSerialize()
 {
     $key = new Key('foo');
     $key->pathElement('Robots', '1000', Key::TYPE_NAME);
     $this->assertEquals($key->jsonSerialize(), $key->keyObject());
 }