koel/app/Services/ApiConsumerInterface.php
2018-08-29 09:07:44 +02:00

12 lines
193 B
PHP

<?php
namespace App\Services;
interface ApiConsumerInterface
{
public function getEndpoint(): string;
public function getKey(): ?string;
public function getSecret(): ?string;
}