koel/app/Services/ApiConsumerInterface.php

13 lines
193 B
PHP
Raw Normal View History

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