OpenSkill\Datatable\Queries\Parser\Datatable19QueryParser::hasValue PHP 메소드

hasValue() 개인적인 메소드

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