mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-10-31 17:29:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			293 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			293 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| namespace App\Logic\Operation;
 | |
| 
 | |
| use App\Logic\Result\ResultInterface;
 | |
| 
 | |
| /**
 | |
|  *
 | |
|  * @author kevinfrantz
 | |
|  *        
 | |
|  */
 | |
| interface OperandInterface
 | |
| {
 | |
|     /**
 | |
|      * Returns the result of the Operation
 | |
|      * @return ResultInterface
 | |
|      */
 | |
|     public function getResult():ResultInterface;
 | |
| }
 | |
| 
 |