2018-08-19 11:08:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
|
|
|
interface ApiConsumerInterface
|
|
|
|
{
|
2018-08-24 15:27:19 +00:00
|
|
|
public function getEndpoint(): string;
|
|
|
|
public function getKey(): ?string;
|
|
|
|
public function getSecret(): ?string;
|
2018-08-19 11:08:16 +00:00
|
|
|
}
|