notNull() public static method

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