示例#1
0
 /**
  * @param   string   $operand
  * @return  File
  */
 public function __construct(ExprInterface $expr, $isParentheses = false)
 {
     parent::__construct('IS NULL', $expr, $isParentheses);
     $this->setFixType('post');
 }
示例#2
0
 /**
  * @param   string   $operand
  * @return  File
  */
 public function __construct(ExprInterface $expr, $isParentheses = false)
 {
     parent::__construct('NOT', $expr, $isParentheses);
 }