| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 6 | final class Operator |
||
| 7 | { |
||
| 8 | const EQUAL = 'equal to'; |
||
| 9 | const EXACTLY = 'exactly'; |
||
| 10 | const GREATER_THAN = 'greater than'; |
||
| 11 | const GREATER_THAN_EQUAL = 'greater than or equal to'; |
||
| 12 | const LESS_THAN = 'less than'; |
||
| 13 | const LESS_THAN_EQUAL = 'less than or equal to'; |
||
| 14 | const NOT_EQUAL = 'not equal to'; |
||
| 15 | const NOT_EXACTLY = 'not exactly'; |
||
| 16 | |||
| 17 | /** @codeCoverageIgnore */ |
||
| 18 | private function __construct() |
||
| 22 |