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

12 lines
194 B
PHP

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