Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function asc($x)
 {
     return $this->expr->asc($x);
 }
Ejemplo n.º 2
0
 public function testOrderByAsc()
 {
     $orderExpr = $this->_expr->asc('u.username');
     $this->assertEquals('u.username ASC', (string) $orderExpr);
 }