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