Completed
Push — master ( 014fbe...537349 )
by Westin
11s
created
src/MapperInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\PSR11MonoLog;
5 5
 
Please login to merge, or discard this patch.
src/ContainerAwareInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\PSR11MonoLog;
5 5
 
Please login to merge, or discard this patch.
src/Formatter/HtmlFormatterFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\PSR11MonoLog\Formatter;
5 5
 
Please login to merge, or discard this patch.
src/Formatter/MongoDBFormatterFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\PSR11MonoLog\Formatter;
5 5
 
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 {
14 14
     public function __invoke(array $options)
15 15
     {
16
-        $maxNestingLevel        = (int)     ($options['maxNestingLevel']        ?? 3);
16
+        $maxNestingLevel        = (int) ($options['maxNestingLevel']        ?? 3);
17 17
         $exceptionTraceAsString = (boolean) ($options['exceptionTraceAsString'] ?? true);
18 18
         return new MongoDBFormatter($maxNestingLevel, $exceptionTraceAsString);
19 19
     }
Please login to merge, or discard this patch.
src/Formatter/LogglyFormatterFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\PSR11MonoLog\Formatter;
5 5
 
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 {
11 11
     public function __invoke(array $options)
12 12
     {
13
-        $batchMode     =            $options['batchMode']     ?? LogglyFormatter::BATCH_MODE_NEWLINES;
13
+        $batchMode     = $options['batchMode']     ?? LogglyFormatter::BATCH_MODE_NEWLINES;
14 14
         $appendNewline = (boolean) ($options['appendNewline'] ?? true);
15 15
         return new LogglyFormatter($batchMode, $appendNewline);
16 16
     }
Please login to merge, or discard this patch.
src/Formatter/GelfMessageFormatterFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\PSR11MonoLog\Formatter;
5 5
 
Please login to merge, or discard this patch.
src/Formatter/ChromePHPFormatterFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\PSR11MonoLog\Formatter;
5 5
 
Please login to merge, or discard this patch.
src/Formatter/FormatterMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\PSR11MonoLog\Formatter;
5 5
 
Please login to merge, or discard this patch.
src/Formatter/NormalizerFormatterFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\PSR11MonoLog\Formatter;
5 5
 
Please login to merge, or discard this patch.