mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 10:55:17 +01:00
11 lines
283 B
PHP
11 lines
283 B
PHP
<?php
|
|
|
|
namespace App\Entity\Source\Operation;
|
|
|
|
use App\Entity\Source\Operation\Attribut\OperandsAttributInterface;
|
|
use App\Logic\Operation\OperationInterface as OperationInterfaceOrigine;
|
|
|
|
interface OperationInterface extends OperandsAttributInterface, OperationInterfaceOrigine
|
|
{
|
|
}
|