mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Added integration test for source
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
|
||||
namespace App\Entity\Source\Operation;
|
||||
|
||||
use App\Logic\Operation\OperandInterface;
|
||||
use App\Logic\Result\Result;
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
use App\Exception\NotDefinedException;
|
||||
@@ -14,7 +13,7 @@ use App\Exception\NotDefinedException;
|
||||
*
|
||||
* @todo move to the logic level!
|
||||
*/
|
||||
class AndOperation extends AbstractOperation
|
||||
class AndOperation extends AbstractOperation implements AndOperationInterface
|
||||
{
|
||||
public function process(): void
|
||||
{
|
||||
|
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity\Source\Operation;
|
||||
|
||||
interface AndOperationInterface extends OperationInterface
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user