Minify\App::typeOf PHP Method

typeOf() private method

private typeOf ( mixed $var ) : string
$var mixed
return string
    private function typeOf($var)
    {
        $type = gettype($var);
        return $type === 'object' ? get_class($var) : $type;
    }