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