File "CannotBuildValidationRule.php"

Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Exceptions/CannotBuildValidationRule.php
File size: 223 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\LaravelData\Exceptions;

use Exception;

class CannotBuildValidationRule extends Exception
{
    public static function create(string $message): self
    {
        return new self($message);
    }
}