keyNotExists() публичный статический Метод

Check that a value key does not exist.
public static keyNotExists ( string $keyName ) : KeyNotExists
$keyName string The key name.
Результат Webmozart\Expression\Constraint\KeyNotExists The created expression.
Пример #1
0
 public function orKeyNotExists($keyName)
 {
     return $this->orX(Expr::keyNotExists($keyName));
 }
Пример #2
0
 public function andKeyNotExists($keyName)
 {
     return $this->andX(Expr::keyNotExists($keyName));
 }