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