mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
22 lines
333 B
PHP
22 lines
333 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services\ApiClients;
|
||
|
|
||
|
class ITunesClient extends ApiClient
|
||
|
{
|
||
|
public function getKey(): ?string
|
||
|
{
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public function getSecret(): ?string
|
||
|
{
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public function getEndpoint(): ?string
|
||
|
{
|
||
|
return config('koel.itunes.endpoint');
|
||
|
}
|
||
|
}
|