mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
23 lines
360 B
PHP
23 lines
360 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Stubs;
|
|
|
|
use App\Services\ApiClients\ApiClient;
|
|
|
|
class ConcreteApiClient extends ApiClient
|
|
{
|
|
public function getKey(): string
|
|
{
|
|
return 'bar';
|
|
}
|
|
|
|
public function getSecret(): string
|
|
{
|
|
return 'secret';
|
|
}
|
|
|
|
public function getEndpoint(): string
|
|
{
|
|
return 'https://foo.com';
|
|
}
|
|
}
|