queryObject() public method

This method is intended for use internally by the PHP client.
public queryObject ( ) : array
return array
コード例 #1
0
ファイル: QueryTest.php プロジェクト: Radiergummi/anacronism
 public function testConstructorOptions()
 {
     $query = new Query($this->mapper, ['query' => ['foo' => 'bar']]);
     $this->assertEquals($query->queryObject(), ['foo' => 'bar']);
 }