koel/app/Services/ApiConsumerInterface.php

11 lines
191 B
PHP
Raw Normal View History

<?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;
}