infinito/application/src/Entity/Source/Operation/OperationInterface.php

11 lines
283 B
PHP
Raw Normal View History

<?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
{
}