mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 11:24:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			450 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			450 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| // {{{ICINGA_LICENSE_HEADER}}}
 | |
| // {{{ICINGA_LICENSE_HEADER}}}
 | |
| 
 | |
| namespace Icinga\Module\Setup;
 | |
| 
 | |
| /**
 | |
|  * Interface for wizards providing a setup and requirements
 | |
|  */
 | |
| interface SetupWizard
 | |
| {
 | |
|     /**
 | |
|      * Return the setup for this wizard
 | |
|      *
 | |
|      * @return  Setup
 | |
|      */
 | |
|     public function getSetup();
 | |
| 
 | |
|     /**
 | |
|      * Return the requirements of this wizard
 | |
|      *
 | |
|      * @return  Requirements
 | |
|      */
 | |
|     public function getRequirements();
 | |
| }
 |