koel/tests/Unit/Stubs/ConcreteApiClient.php
2019-04-07 23:09:25 +02:00

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';
}
}