mirror of
https://github.com/koel/koel
synced 2024-12-24 03:23:06 +00:00
22 lines
299 B
PHP
22 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';
|
|
}
|
|
}
|