OpenSkill\Datatable\Queries\Parser\Datatable19QueryParser::hasValue PHP Method

hasValue() private method

NOTE: (this is almost the opposite of isEmpty, but it is *not* the same)
private hasValue ( mixed $string ) : boolean
$string mixed
return boolean true if empty, false otherwise
    private function hasValue($string)
    {
        return isset($string) && strlen($string) > 0;
    }