/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
brick
/
varexporter
/
src
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/brick/varexporter/src
mkdir
upload
Name
Size
Mode
Actions
Internal/
-
0755
rm
ExportException.php
785
0644
edit
dl
rm
VarExporter.php
3509
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/brick/varexporter/src/ExportException.php
(785B)
<?php declare(strict_types=1); namespace Brick\VarExporter; use Throwable; final class ExportException extends \Exception { /** * @param string $message * @param string[] $path * @param Throwable|null $previous */ public function __construct(string $message, array $path, ?Throwable $previous = null) { if ($path) { $message = 'At ' . self::pathToString($path) . ': ' . $message; } parent::__construct($message, 0, $previous); } /** * Returns a string representation of the given path. * * @param string[] $path * * @return string */ public static function pathToString(array $path) : string { return '[' . implode('][', $path) . ']'; } }
Save