File "MaxDigits.php"
Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Attributes/Validation/MaxDigits.php
File size: 528 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\LaravelData\Attributes\Validation;
use Attribute;
use Spatie\LaravelData\Support\Validation\References\ExternalReference;
#[Attribute(Attribute::TARGET_PROPERTY | Attribute::TARGET_PARAMETER)]
class MaxDigits extends StringValidationAttribute
{
public function __construct(protected int|ExternalReference $value)
{
}
public static function keyword(): string
{
return 'max_digits';
}
public function parameters(): array
{
return [$this->value];
}
}