koel/app/Services/ApiConsumerInterface.php

13 lines
194 B
PHP
Raw Normal View History

<?php
namespace App\Services;
interface ApiConsumerInterface
{
2018-08-29 10:36:05 +00:00
public function getEndpoint(): ?string;
2018-08-31 13:47:45 +00:00
2018-08-24 15:27:19 +00:00
public function getKey(): ?string;
2018-08-31 13:47:45 +00:00
2018-08-24 15:27:19 +00:00
public function getSecret(): ?string;
}