コード例 #1
0
ファイル: IsNullExpr.php プロジェクト: kevinlondon/appfuel
 /**
  * @param   string   $operand
  * @return  File
  */
 public function __construct(ExprInterface $expr, $isParentheses = false)
 {
     parent::__construct('IS NULL', $expr, $isParentheses);
     $this->setFixType('post');
 }
コード例 #2
0
ファイル: NotExpr.php プロジェクト: kevinlondon/appfuel
 /**
  * @param   string   $operand
  * @return  File
  */
 public function __construct(ExprInterface $expr, $isParentheses = false)
 {
     parent::__construct('NOT', $expr, $isParentheses);
 }