mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
19 lines
326 B
PHP
19 lines
326 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
|
|
{
|
|
/** @return array<mixed> */
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'song' => 'required',
|
|
];
|
|
}
|
|
}
|