* @since 2.0 */ class Lower extends Base { /** * Checks if the given value is the same as base one or has partial match with base one. * @param mixed $value */ public function check($value) { return ($value < $this->value); } }