mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
23 lines
348 B
PHP
23 lines
348 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Stubs;
|
|
|
|
use App\Services\ApiClient;
|
|
|
|
class ConcreteApiClient extends ApiClient
|
|
{
|
|
public function getKey(): string
|
|
{
|
|
return 'bar';
|
|
}
|
|
|
|
public function getSecret(): string
|
|
{
|
|
return 'secret';
|
|
}
|
|
|
|
public function getEndpoint(): string
|
|
{
|
|
return 'http://foo.com';
|
|
}
|
|
}
|