mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-03 18:58:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			379 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			379 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Domain\MVCManagement;
 | 
						|
 | 
						|
use FOS\RestBundle\View\View;
 | 
						|
 | 
						|
/**
 | 
						|
 * This interface offers the options to process an MVC routine.
 | 
						|
 *
 | 
						|
 * @author kevinfrantz
 | 
						|
 */
 | 
						|
interface MVCRoutineServiceInterface
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Process the injected services.
 | 
						|
     */
 | 
						|
    public function process(): void;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return View
 | 
						|
     */
 | 
						|
    public function getView(): View;
 | 
						|
}
 |