mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-19 00:26:02 +02:00
Added logic draft and optimized rights
This commit is contained in:
19
application/src/Logic/Operation/OperandInterface.php
Normal file
19
application/src/Logic/Operation/OperandInterface.php
Normal 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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user