mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 11:45:18 -05:00
37 lines
758 B
PHP
37 lines
758 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Player;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class GetInventoryRequest extends FormRequest
|
|
{
|
|
public int $limit;
|
|
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return Auth::check();
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'limit' => 'required|int',
|
|
];
|
|
}
|
|
|
|
public function passedValidation()
|
|
{
|
|
$this->limit = $this->input('limit');
|
|
}
|
|
}
|