queryObject() public method

This method is intended for use internally by the PHP client.
public queryObject ( ) : array
return array
Ejemplo n.º 1
0
 public function testConstructorOptions()
 {
     $query = new Query($this->mapper, ['query' => ['foo' => 'bar']]);
     $this->assertEquals($query->queryObject(), ['foo' => 'bar']);
 }