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

Checks assertion. Values must not contains expected needle.
public static notContains ( $needle, $actual, $description = NULL ) : void
Результат void
Пример #1
0
 public static function hasNot($expected)
 {
     return static::match(function ($arg) use($expected) {
         Assert::notContains($expected, $arg);
     });
 }