koel/app/Http/Requests/API/SettingRequest.php

20 lines
317 B
PHP
Raw Normal View History

2015-12-13 12:42:28 +08:00
<?php
namespace App\Http\Requests\API;
use App\Rules\MediaPath;
2017-06-04 02:12:08 +01:00
/**
2022-07-07 12:59:56 +02:00
* @property-read string $media_path
2017-06-04 02:12:08 +01:00
*/
2015-12-13 12:42:28 +08:00
class SettingRequest extends Request
{
2020-12-22 21:11:22 +01:00
/** @return array<mixed> */
2018-08-30 10:11:47 +07:00
public function rules(): array
2015-12-13 12:42:28 +08:00
{
return [
'media_path' => ['string', new MediaPath()],
2015-12-13 12:42:28 +08:00
];
}
}