koel/tests/Unit/Stubs/ConcreteApiClient.php
2018-08-29 13:15:23 +07:00

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