mirror of
https://github.com/koel/koel
synced 2024-12-11 21:22:28 +00:00
16 lines
250 B
PHP
16 lines
250 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services;
|
||
|
|
||
|
interface ApiConsumerInterface
|
||
|
{
|
||
|
/** @return string */
|
||
|
public function getEndpoint();
|
||
|
|
||
|
/** @return string */
|
||
|
public function getKey();
|
||
|
|
||
|
/** @return string|null */
|
||
|
public function getSecret();
|
||
|
}
|