| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | abstract class AbstractCompareOne implements OperatorInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * {@inheritdoc} |
||
| 19 | */ |
||
| 20 | public function execute(...$expressions): bool |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Execute the comparison for the expression |
||
| 33 | * |
||
| 34 | * @param mixed $expression |
||
| 35 | * @return bool |
||
| 36 | */ |
||
| 37 | abstract public function executeComparison($expression): bool; |
||
| 38 | } |
||
| 39 |