koel/tests/Unit/Stubs/ConcreteApiClient.php
2018-08-19 13:13:29 +02:00

22 lines
299 B
PHP

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