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