koel/app/Services/ApiConsumerInterface.php
2018-08-29 13:15:23 +07:00

10 lines
191 B
PHP

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