mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
18 lines
294 B
PHP
18 lines
294 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\API\Interaction;
|
|
|
|
use App\Http\Requests\API\Request;
|
|
|
|
/**
|
|
* @property string $song The song's ID
|
|
*/
|
|
class StorePlayCountRequest extends Request
|
|
{
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'song' => 'required',
|
|
];
|
|
}
|
|
}
|