Assert\Assert::thatAll PHP Method

thatAll() public static method

Start validation on a set of values, returns {@link AssertionChain}
public static thatAll ( mixed $values, string $defaultMessage = null, string $defaultPropertyPath = null ) : AssertionChain
$values mixed
$defaultMessage string
$defaultPropertyPath string
return AssertionChain
    public static function thatAll($values, $defaultMessage = null, $defaultPropertyPath = null)
    {
        return static::that($values, $defaultMessage, $defaultPropertyPath)->all();
    }