| 1 | <?php |
||
| 5 | class Level |
||
| 6 | { |
||
| 7 | public static $GREATER_THAN = 0; |
||
| 8 | public static $GREATER_THAN_OR_EQUAL = 1; |
||
| 9 | public static $LESS_THAN_OR_EQUAL = 2; |
||
| 10 | public static $LESS_THAN = 3; |
||
| 11 | |||
| 12 | public $level; |
||
| 13 | public $value; |
||
| 14 | public $comparison; |
||
| 15 | |||
| 16 | public function __construct($level, $value, $comparison) |
||
| 22 | } |
||
| 23 |