-
Notifications
You must be signed in to change notification settings - Fork 10
/
Expression.php
49 lines (44 loc) · 1.17 KB
/
Expression.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/*
* This file is part of the webmozart/expression package.
*
* (c) Bernhard Schussek <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Webmozart\Expression;
/**
* A logical expression.
*
* @since 1.0
*
* @author Bernhard Schussek <[email protected]>
*/
interface Expression
{
/**
* Evaluates the expression with the given value.
*
* @param mixed $value A value.
*
* @return bool Returns `true` if the value satisfies the expression and
* `false` otherwise.
*/
public function evaluate($value);
/**
* Returns whether this expression is logically equivalent to another expression.
*
* @param Expression $other Some expression.
*
* @return bool Returns `true` if the expressions are logically equivalent
* and `false` otherwise.
*/
public function equivalentTo(Expression $other);
/**
* Returns a string representation of the expression.
*
* @return string The expression as string.
*/
public function toString();
}