mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-23 04:56:10 +01:00
15 lines
411 B
PHP
15 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;
|
|
}
|