Mercurial > hg > isophonics-drupal-site
diff vendor/psy/psysh/src/Psy/Command/WtfCommand.php @ 12:7a779792577d
Update Drupal core to v8.4.5 (via Composer)
author | Chris Cannam |
---|---|
date | Fri, 23 Feb 2018 15:52:07 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line diff
--- a/vendor/psy/psysh/src/Psy/Command/WtfCommand.php Fri Feb 23 15:51:18 2018 +0000 +++ b/vendor/psy/psysh/src/Psy/Command/WtfCommand.php Fri Feb 23 15:52:07 2018 +0000 @@ -98,13 +98,13 @@ $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));