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