OpenSkill\Datatable\Queries\Parser\Datatable19QueryParser::hasValue PHP Méthode

hasValue() private méthode

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