File "CouldNotCreateValidationRule.php"
Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Exceptions/CouldNotCreateValidationRule.php
File size: 266 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\LaravelData\Exceptions;
use Exception;
class CouldNotCreateValidationRule extends Exception
{
public static function create(string $rule): self
{
return new self("Could not create a validation rule for: `{$rule}`");
}
}