* @since 2.0.7 */ class GreaterThanOrEqual extends Base { /** * @inheritdoc */ public function match($value) { return $value >= $this->baseValue; } }