16 lines
		
	
	
		
			236 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			236 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace NoccyLabs\Hotfix\Runner;
 | 
						|
 | 
						|
use NoccyLabs\Hotfix\System\Facts;
 | 
						|
use NoccyLabs\Hotfix\Hotfix\Hotfix;
 | 
						|
 | 
						|
 | 
						|
interface RunnerInterface
 | 
						|
{
 | 
						|
 | 
						|
    public function prepare(Hotfix $hotfix, Facts $facts);
 | 
						|
 | 
						|
    public function apply();
 | 
						|
 | 
						|
} |