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