mirror of
https://github.com/pelican-dev/panel.git
synced 2026-07-15 21:48:08 +03:00
19 lines
437 B
PHP
19 lines
437 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Application\Mounts;
|
|
|
|
class UpdateMountServersRequest extends StoreMountRequest
|
|
{
|
|
/**
|
|
* @param array<string, string|string[]>|null $rules
|
|
* @return array<string, string|string[]>
|
|
*/
|
|
public function rules(?array $rules = null): array
|
|
{
|
|
return [
|
|
'servers' => 'required|array|exists:servers,id',
|
|
'servers.*' => 'integer',
|
|
];
|
|
}
|
|
}
|