Webmozart\Expression\Expr::keyNotExists PHP Method

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.
    public static function keyNotExists($keyName)
    {
        return new KeyNotExists($keyName);
    }

Usage Example

Esempio n. 1
0
 public function orKeyNotExists($keyName)
 {
     return $this->orX(Expr::keyNotExists($keyName));
 }
All Usage Examples Of Webmozart\Expression\Expr::keyNotExists