mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 10:16:22 +02: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;
|
|
}
|
|
|