コード例 #1
0
ファイル: ExpressionBuilder.php プロジェクト: php-lug/lug
 /**
  * {@inheritdoc}
  */
 public function asc($x)
 {
     return $this->expr->asc($x);
 }
コード例 #2
0
ファイル: ExprTest.php プロジェクト: selimcr/servigases
 public function testOrderByAsc()
 {
     $orderExpr = $this->_expr->asc('u.username');
     $this->assertEquals('u.username ASC', (string) $orderExpr);
 }