infinito/application/src/Logic/Operation/OperandInterface.php
2018-09-21 13:15:59 +02:00

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;
}