pixelfed/app/Rules/ValidUrl.php

21 lines
518 B
PHP
Raw Normal View History

2024-07-23 07:30:03 +00:00
<?php
namespace App\Rules;
use Closure;
use Illuminate\Contracts\Validation\ValidationRule;
class ValidUrl implements ValidationRule
{
/**
* Run the validation rule.
*
* @param \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString $fail
*/
public function validate(string $attribute, mixed $value, Closure $fail): void
{
if (!str_starts_with(strtolower($value), 'https://')) {
$fail('The :attribute must start with https://.');
}
}
}