mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-09-26 11:19:16 +02:00
10 lines
162 B
PHP
10 lines
162 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\IcingaConfig;
|
|
|
|
interface IcingaConfigRenderer
|
|
{
|
|
public function toConfigString();
|
|
public function __toString();
|
|
}
|