Security update for Core, with self-updated composer
[yaffs-website] / vendor / psy / psysh / src / Psy / Command / WtfCommand.php
index 2e5c00ce14e108384ba2c3fdb25c6eb5aeb06dcb..af3bcd143b4528be94875bb1af70b365d43d7151 100644 (file)
@@ -98,13 +98,13 @@ HELP
         $output->startPaging();
         do {
             $traceCount = count($exception->getTrace());
-            $showLines = $count;
+            $showLines  = $count;
             // Show the whole trace if we'd only be hiding a few lines
             if ($traceCount < max($count * 1.2, $count + 2)) {
                 $showLines = PHP_INT_MAX;
             }
 
-            $trace = $this->getBacktrace($exception, $showLines);
+            $trace     = $this->getBacktrace($exception, $showLines);
             $moreLines = $traceCount - count($trace);
 
             $output->writeln($shell->formatException($exception));