20 lines
367 B
PHP
20 lines
367 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Messaging;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class ToggleMessageReactionRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return $this->user() !== null;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'reaction' => 'required|string|max:32',
|
|
];
|
|
}
|
|
} |