mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-15 17:58:16 +02:00
18 lines
320 B
PHP
18 lines
320 B
PHP
<?php
|
|
|
|
namespace App\Attribut;
|
|
|
|
use App\Logic\Operation\OperationInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface ConditionAttributInterface
|
|
{
|
|
public function getCondition(): OperationInterface;
|
|
|
|
public function setCondition(OperationInterface $operation): void;
|
|
|
|
public function hasCondition(): bool;
|
|
}
|