Ejemplo n.º 1
0
 /**
  * @param   string   $operand
  * @return  File
  */
 public function __construct(ExprInterface $lexpr, ExprInterface $rexpr, $isParentheses = false)
 {
     parent::__construct($lexpr, '<', $rexpr, $isParentheses);
 }
Ejemplo n.º 2
0
 /**
  * @param   string   $operand
  * @return  File
  */
 public function __construct(ExprInterface $expr, ExprInterface $contents, $isParentheses = false)
 {
     parent::__construct($expr, 'IN', $contents, $isParentheses);
 }