keyNotExists() public static method

Check that a value key does not exist.
public static keyNotExists ( string $keyName ) : KeyNotExists
$keyName string The key name.
return Webmozart\Expression\Constraint\KeyNotExists The created expression.
Ejemplo n.º 1
0
 public function orKeyNotExists($keyName)
 {
     return $this->orX(Expr::keyNotExists($keyName));
 }
Ejemplo n.º 2
0
 public function andKeyNotExists($keyName)
 {
     return $this->andX(Expr::keyNotExists($keyName));
 }