7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-03 20:18:59 +02:00
2020-01-19 13:50:38 -08:00

27 lines
409 B
PHP

<?php
namespace Pterodactyl\Http\Requests\Api\Remote;
use Illuminate\Foundation\Http\FormRequest;
class InstallationDataRequest extends FormRequest
{
/**
* @return bool
*/
public function authorize()
{
return true;
}
/**
* @return array
*/
public function rules()
{
return [
'successful' => 'present|boolean',
];
}
}