GIF89; GIF89; %PDF- %PDF-
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace App\Attributes;
use AllowDynamicProperties;
use App\Responses\Shared\Dto;
use App\Services\Shared\ResponseService;
use Attribute;
use Knuckles\Scribe\Attributes\Response as ResponseAttribute;
#[AllowDynamicProperties]
#[Attribute(Attribute::IS_REPEATABLE | Attribute::TARGET_FUNCTION | Attribute::TARGET_METHOD | Attribute::TARGET_CLASS)]
class OpenApiValidationErrorResponse extends ResponseAttribute
{
public function __construct()
{
}
public function toArray(): array
{
return [
'status' => 422,
'content' => ResponseService::array(Dto::validationError()),
'description' => 'Validation Error',
];
}
}