File "BaseApiRequest.php"

Full Path: /var/www/html/back/.git/objects/eb/BaseApiRequest.php
File size: 275 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

declare(strict_types=1);

namespace App\BaseClasses;

use Illuminate\Foundation\Http\FormRequest;

abstract class BaseApiRequest extends FormRequest
{
    abstract public static function bodyParameters(): array;
    abstract public static function example(): array;
}