koel/tests/Unit/Stubs/ConcreteApiClient.php
2022-07-29 09:04:44 +02: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';
}
}