notNull() public static méthode

Check that a value is not null.
public static notNull ( ) : NotSame
Résultat Webmozart\Expression\Constraint\NotSame The created expression.
Exemple #1
0
 public function orNotNull()
 {
     return $this->orX(Expr::notNull());
 }
Exemple #2
0
 public function andNotNull()
 {
     return $this->andX(Expr::notNull());
 }