icingaweb2/library/Icinga/Util/ConfigAwareFactory.php

19 lines
456 B
PHP
Raw Normal View History

<?php
2015-02-03 15:49:34 +01:00
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | http://www.gnu.org/licenses/gpl-2.0.txt */
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);
}