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