/var/www/vhosts/ihelp.ro/httpdocs/vendor/brick/varexporter/src
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/brick/varexporter/src/VarExporter.php (3509B)
export($var, [], []);
if ($indentLevel < 1 || count($lines) < 2) {
$export = implode(PHP_EOL, $lines);
} else {
$firstLine = array_shift($lines);
$lines = array_map(function ($line) use ($indentLevel) {
return str_repeat(' ', $indentLevel) . $line;
}, $lines);
$export = $firstLine . PHP_EOL . implode(PHP_EOL, $lines);
}
if ($options & self::ADD_RETURN) {
return 'return ' . $export . ';' . PHP_EOL;
}
return $export;
}
}