koel/app/Services/ApiConsumerInterface.php
2018-08-31 20:47:15 +07:00

10 lines
192 B
PHP

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