formatKey example

$content .= '];' . \PHP_EOL;

        file_put_contents($this->path, $content);
    }

    private function dumpDataShort(): string
    {
        $content = '';

        foreach ($this->data as $key => $value) {
            $content .= ' ' . $this->formatKey($key) . ' => ' . var_export($value, true) . ',' . \PHP_EOL;
        }

        return $content;
    }

    private function dumpDataLong(): string
    {
        $content = '';

        foreach ($this->data as $key => $value) {
            if ($value === '') {
                
Home | Imprint | This part of the site doesn't use cookies.