mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-23 08:16:11 +01:00
16 lines
411 B
PHP
16 lines
411 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace WerkraumMedia\Events\Service\DestinationDataImportService;
|
||
|
|
||
|
interface ConfigurationServiceInterface
|
||
|
{
|
||
|
public function getLicenseKey(): string;
|
||
|
public function getRestType(): string;
|
||
|
public function getRestMode(): string;
|
||
|
public function getRestLimit(): string;
|
||
|
public function getRestTemplate(): string;
|
||
|
public function getRestUrl(): string;
|
||
|
}
|