Completed
Push — master ( 1bc200...23e324 )
by Martin
06:16
created
src/Formatter/StandardFormatter.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -33,23 +33,23 @@
 block discarded – undo
33 33
 
34 34
         if ($context = $record->getContext()) {
35 35
             $contextString = strtr(
36
-              self::CONTEXT_FORMAT,
37
-              [
36
+                self::CONTEXT_FORMAT,
37
+                [
38 38
                 '%context%' => $this->dumper->dump($context),
39
-              ]
39
+                ]
40 40
             );
41 41
         }
42 42
 
43 43
         $string = strtr(
44
-          self::FORMAT,
45
-          [
44
+            self::FORMAT,
45
+            [
46 46
             '%datetime%' => $record->getDatetime()->format(
47
-              static::DATETIME_FORMAT
47
+                static::DATETIME_FORMAT
48 48
             ),
49 49
             '%level%' => $record->getLevel(),
50 50
             '%message%' => $record->getMessage(),
51 51
             '%contextPlaceholder%' => $contextString,
52
-          ]
52
+            ]
53 53
         );
54 54
 
55 55
         return $string;
Please login to merge, or discard this patch.