CodeExplorer 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 === ''
) {