Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function literal($literal)
 {
     return $this->expr->literal($literal);
 }
Ejemplo n.º 2
0
 /**
  * @group DDC-1683
  */
 public function testBooleanLiteral()
 {
     $this->assertEquals('true', $this->_expr->literal(true));
     $this->assertEquals('false', $this->_expr->literal(false));
 }