koel/tests/Unit/Stubs/ConcreteApiClient.php

24 lines
364 B
PHP
Raw Normal View History

<?php
namespace Tests\Unit\Stubs;
2019-04-07 21:09:25 +00:00
use App\Services\AbstractApiClient;
2019-04-07 21:09:25 +00:00
class ConcreteApiClient extends AbstractApiClient
{
2018-08-24 15:27:19 +00:00
public function getKey(): string
{
return 'bar';
}
2018-08-24 15:27:19 +00:00
public function getSecret(): string
{
2018-08-24 15:27:19 +00:00
return 'secret';
}
2018-08-24 15:27:19 +00:00
public function getEndpoint(): string
{
return 'http://foo.com';
}
}