IcingaConfigRenderer(Legacy): Update classes for interface change
refs #12919
This commit is contained in:
parent
1502dd9c90
commit
a804874a54
|
@ -26,4 +26,9 @@ class IcingaConfigRendered implements IcingaConfigRenderer
|
|||
{
|
||||
return $this->toConfigString();
|
||||
}
|
||||
|
||||
public function toLegacyConfigString()
|
||||
{
|
||||
return $this->rendered;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -393,4 +393,9 @@ class IcingaArguments implements Iterator, Countable, IcingaConfigRenderer
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function toLegacyConfigString()
|
||||
{
|
||||
return 'UNSUPPORTED';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue