mirror of
https://github.com/pelican-dev/panel.git
synced 2026-03-01 11:21:31 +03:00
18 lines
378 B
PHP
18 lines
378 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Application\Plugins;
|
|
|
|
class UninstallPluginRequest extends WritePluginRequest
|
|
{
|
|
/**
|
|
* @param array<array-key, string|string[]>|null $rules
|
|
* @return array<array-key, string|string[]>
|
|
*/
|
|
public function rules(?array $rules = null): array
|
|
{
|
|
return [
|
|
'delete' => 'boolean',
|
|
];
|
|
}
|
|
}
|