コード例 #1
0
ファイル: SelectQuery.php プロジェクト: krajewskis/ppdo
 public function order($order)
 {
     $this->selectBuilder->order($order);
     return $this;
 }
コード例 #2
0
ファイル: SelectBuilderTest.php プロジェクト: krajewskis/ppdo
 public function testOrder()
 {
     $this->selectBuilder->order('id DESC');
     $this->assertEquals('SELECT * FROM test ORDER BY id DESC', $this->selectBuilder->build());
 }