public function toString()

in src/Encode.php [40:57]


    public function toString()
    {
        $string = '';
        foreach ($this->data as $key => $value) {
            $encode = rawurlencode($value);
            if ($encode === '') {
                $string .= "$key&";
            } else {
                $string .= "$key=$encode&";
            }
        }

        if (0 < count($this->data)) {
            $string = substr($string, 0, -1);
        }

        return $string;
    }