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