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