thomas-kl1/php-combine-conditions

View on GitHub
src/Node/ConditionInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);
/**
 * Copyright © Thomas Klein, All right reserved.
 * See LICENSE bundled with this library for license details.
 */

namespace LogicTree\Node;

/**
 * @api
 */
interface ConditionInterface extends NodeInterface
{
    public function getValueIdentifier(): string;

    public function setValueIdentifier(string $identifier): void;

    public function getValueCompare(): mixed;

    public function setValueCompare(mixed $value): void;
}