null() public static method

Check that a value is null.
public static null ( ) : Same
return Webmozart\Expression\Constraint\Same The created expression.
コード例 #1
0
ファイル: OrX.php プロジェクト: webmozart/expression
 public function orNull()
 {
     return $this->orX(Expr::null());
 }
コード例 #2
0
ファイル: AndX.php プロジェクト: webmozart/expression
 public function andNull()
 {
     return $this->andX(Expr::null());
 }