mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-08 09:38:37 +02:00
18 lines
336 B
PHP
18 lines
336 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Remote;
|
|
|
|
class InstallationDataRequest extends ServerRequest
|
|
{
|
|
/**
|
|
* @return array<string, string|string[]>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'successful' => 'present|boolean',
|
|
'reinstall' => 'sometimes|boolean',
|
|
];
|
|
}
|
|
}
|