コード例 #1
0
ファイル: BaseQuery.php プロジェクト: cgslivre/database-1
 /**
  * @param   string|array    $columns
  * @param   string          $order      (optional)
  *
  * @return  $this
  */
 public function orderBy($columns, $order = 'ASC')
 {
     $this->query->orderBy($columns, $order);
     return $this;
 }