mirror of
https://github.com/koel/koel
synced 2024-12-26 04:23:05 +00:00
12 lines
165 B
PHP
12 lines
165 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests;
|
||
|
|
||
|
/**
|
||
|
* @property-read string $state
|
||
|
* @property-read string $code
|
||
|
*/
|
||
|
class SpotifyCallbackRequest extends AbstractRequest
|
||
|
{
|
||
|
}
|