ALPHA 3.0.2a

This commit is contained in:
TheGamecraft
2018-09-10 08:51:18 -04:00
parent 7fe13ae0a7
commit 0e0ef86b71
1404 changed files with 10604 additions and 33714 deletions

View File

@@ -49,14 +49,14 @@ class Presenter
public function __construct(OutputFormatter $formatter, $forceArrayIndexes = false)
{
// Work around https://github.com/symfony/symfony/issues/23572
$oldLocale = setlocale(LC_NUMERIC, 0);
setlocale(LC_NUMERIC, 'C');
$oldLocale = \setlocale(LC_NUMERIC, 0);
\setlocale(LC_NUMERIC, 'C');
$this->dumper = new Dumper($formatter, $forceArrayIndexes);
$this->dumper->setStyles($this->styles);
// Now put the locale back
setlocale(LC_NUMERIC, $oldLocale);
\setlocale(LC_NUMERIC, $oldLocale);
$this->cloner = new Cloner();
$this->cloner->addCasters(['*' => function ($obj, array $a, Stub $stub, $isNested, $filter = 0) {
@@ -116,8 +116,8 @@ class Presenter
}
// Work around https://github.com/symfony/symfony/issues/23572
$oldLocale = setlocale(LC_NUMERIC, 0);
setlocale(LC_NUMERIC, 'C');
$oldLocale = \setlocale(LC_NUMERIC, 0);
\setlocale(LC_NUMERIC, 'C');
$output = '';
$this->dumper->dump($data, function ($line, $depth) use (&$output) {
@@ -125,12 +125,12 @@ class Presenter
if ('' !== $output) {
$output .= PHP_EOL;
}
$output .= str_repeat(' ', $depth) . $line;
$output .= \str_repeat(' ', $depth) . $line;
}
});
// Now put the locale back
setlocale(LC_NUMERIC, $oldLocale);
\setlocale(LC_NUMERIC, $oldLocale);
return OutputFormatter::escape($output);
}