File "Present.php"
Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Attributes/Validation/Present.php
File size: 354 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\LaravelData\Attributes\Validation;
use Attribute;
#[Attribute(Attribute::TARGET_PROPERTY | Attribute::TARGET_PARAMETER)]
class Present extends StringValidationAttribute
{
public static function keyword(): string
{
return 'present';
}
public function parameters(): array
{
return [];
}
}