mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-13 00:44:25 +02:00
11 lines
206 B
PHP
11 lines
206 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\IcingaConfig;
|
|
|
|
interface IcingaConfigRenderer
|
|
{
|
|
public function toConfigString();
|
|
public function toLegacyConfigString();
|
|
public function __toString();
|
|
}
|