Dhii/expression-interface

View on GitHub
src/LogicalExpressionInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Dhii\Expression;

/**
 * A logical expression is an expression that evaluates to either true or false.
 *
 * @since 0.1
 */
interface LogicalExpressionInterface extends ExpressionInterface
{
    /**
     * Gets whether or not the expression is negated.
     *
     * @since 0.1
     *
     * @return bool True if the expression is negated, false if not.
     */
    public function isNegated();
}