mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Added logic draft and optimized rights
This commit is contained in:
26
application/src/Logic/Operation/OperationInterface.php
Normal file
26
application/src/Logic/Operation/OperationInterface.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
namespace App\Logic\Operation;
|
||||
|
||||
use App\Logic\Result\ResultInterface;
|
||||
use Doctrine\Common\Collections\ArrayCollection;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*
|
||||
*/
|
||||
interface OperationInterface extends OperandInterface
|
||||
{
|
||||
/**
|
||||
* Sets the Operators the operation has to deal with
|
||||
* @param ArrayCollection $operands | OperandInterface[]
|
||||
*/
|
||||
public function setOperators(ArrayCollection $operands):void;
|
||||
|
||||
/**
|
||||
* Process the logic
|
||||
*/
|
||||
public function process():void;
|
||||
}
|
||||
|
Reference in New Issue
Block a user