Completed
Push — dev ( 7bc15a...62ab2a )
by Markus
02:11
created
src/Formatter/SeqBaseFormatter.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,9 +48,9 @@
 block discarded – undo
48 48
      * @param  Throwable $e The throwable instance to normalize.
49 49
      * @return string
50 50
      */
51
-	protected function normalizeException($e) : string
51
+    protected function normalizeException($e) : string
52 52
     {
53
-   		$previousText = '';
53
+            $previousText = '';
54 54
         if ($previous = $e->getPrevious()) {
55 55
             do {
56 56
                 $previousText .= ', ' . get_class($previous) . '(code: ' . $previous->getCode() . '): ' . $previous->getMessage() . ' at ' . $previous->getFile() . ':' . $previous->getLine();
Please login to merge, or discard this patch.