public function testSetSelect() { $sphinx = new SphinxClient(); $sphinx->setSelect('*, @weight + 10 as myweight'); $this->assertSame($sphinx->select, '*, @weight + 10 as myweight'); }
/** * {@inheritdoc} */ public function setSelect($select) { return $this->proxy->setSelect($select); }