Added logic draft and optimized rights

This commit is contained in:
Kevin Frantz
2018-09-21 13:15:59 +02:00
parent fb6cf53785
commit a4fdb07cb6
8 changed files with 226 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
<?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;
}