IcingaConfigRenderer(Legacy): Update classes for interface change

refs #12919
This commit is contained in:
Markus Frosch 2016-10-14 15:40:48 +02:00
parent 1502dd9c90
commit a804874a54
2 changed files with 10 additions and 0 deletions

View File

@ -26,4 +26,9 @@ class IcingaConfigRendered implements IcingaConfigRenderer
{
return $this->toConfigString();
}
public function toLegacyConfigString()
{
return $this->rendered;
}
}

View File

@ -393,4 +393,9 @@ class IcingaArguments implements Iterator, Countable, IcingaConfigRenderer
}
}
}
public function toLegacyConfigString()
{
return 'UNSUPPORTED';
}
}