2016-03-05 09:01:12 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\API;
|
|
|
|
|
2016-08-03 10:42:11 +00:00
|
|
|
/**
|
2020-12-22 20:11:22 +00:00
|
|
|
* @property array<string> $songs
|
|
|
|
* @property array<mixed> $data
|
2016-08-03 10:42:11 +00:00
|
|
|
*/
|
2016-03-05 09:01:12 +00:00
|
|
|
class SongUpdateRequest 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
|
2016-03-05 09:01:12 +00:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'data' => 'required|array',
|
2024-01-06 11:31:50 +00:00
|
|
|
'songs' => 'required|array|exists:songs,id',
|
2016-03-05 09:01:12 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|