2013-08-12 10:54:16 +02:00
|
|
|
<?php
|
2015-02-03 16:16:10 +01:00
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
2013-08-12 10:54:16 +02:00
|
|
|
|
|
|
|
namespace Icinga\Util;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface defining a factory which is configured at runtime
|
|
|
|
*/
|
|
|
|
interface ConfigAwareFactory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Set the factory's config
|
|
|
|
*
|
|
|
|
* @param mixed $config
|
|
|
|
* @throws \Icinga\Exception\ConfigurationError if the given config is not valid
|
|
|
|
*/
|
|
|
|
public static function setConfig($config);
|
|
|
|
}
|