File "LogoutRequest.php"
Full Path: /var/www/html/back/app/Domain/Auth/Requests/LogoutRequest.php
File size: 465 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace App\Domain\Auth\Requests;
use App\BaseClasses\BaseApiRequest;
class LogoutRequest extends BaseApiRequest
{
public static function bodyParameters(): array
{
return [];
}
public static function example(): array
{
return [];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}