mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-04 05:05:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			417 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			417 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// {{{ICINGA_LICENSE_HEADER}}}
 | 
						|
// {{{ICINGA_LICENSE_HEADER}}}
 | 
						|
 | 
						|
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);
 | 
						|
}
 |