public static functionnotStartsWith($value, $prefix, $message = '') {
if (0 === \strpos($value, $prefix)) {
static::reportInvalidArgument(\sprintf($message ?: 'Expected a value not to start with %2$s. Got: %s', static::valueToString($value), static::valueToString($prefix)));
}
}