koel/tests/Unit/Stubs/ConcreteApiClient.php
2022-08-08 18:00:59 +02:00

23 lines
360 B
PHP

<?php
namespace Tests\Unit\Stubs;
use App\Services\ApiClients\ApiClient;
class ConcreteApiClient extends ApiClient
{
public function getKey(): string
{
return 'bar';
}
public function getSecret(): string
{
return 'secret';
}
public function getEndpoint(): string
{
return 'https://foo.com';
}
}