koel/app/Services/ApiConsumerInterface.php

10 lines
191 B
PHP

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