mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
15 lines
223 B
PHP
15 lines
223 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests\API;
|
||
|
|
||
|
/**
|
||
|
* @property int $timestamp
|
||
|
*/
|
||
|
class ScrobbleStoreRequest extends Request
|
||
|
{
|
||
|
public function rules(): array
|
||
|
{
|
||
|
return ['timestamp' => 'required|numeric'];
|
||
|
}
|
||
|
}
|