Completed
Push — master ( d87453...fe04c7 )
by Westin
03:28
created
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.
src/Formatter/ElasticaFormatterFactory.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/ScalarFormatterFactory.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/WildfireFormatterFactory.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/FlowdockFormatterFactory.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/Handler/HandlerMapper.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\Handler;
5 5
 
Please login to merge, or discard this patch.
src/Formatter/JsonFormatterFactory.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     = (int)     ($options['batchMode']     ?? JsonFormatter::BATCH_MODE_JSON);
13
+        $batchMode     = (int) ($options['batchMode']     ?? JsonFormatter::BATCH_MODE_JSON);
14 14
         $appendNewline = (boolean) ($options['appendNewline'] ?? true);
15 15
         return new JsonFormatter($batchMode, $appendNewline);
16 16
     }
Please login to merge, or discard this patch.
src/Handler/SlackbotHandlerFactory.php 1 patch
Spacing   +5 added lines, -5 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\Handler;
5 5
 
@@ -11,10 +11,10 @@  discard block
 block discarded – undo
11 11
 {
12 12
     public function __invoke(array $options)
13 13
     {
14
-        $slackTeam = (string)  ($options['slackTeam'] ?? '');
15
-        $token     = (string)  ($options['token']     ?? '');
16
-        $channel   = (string)  ($options['channel']   ?? '');
17
-        $level     = (int)     ($options['level']     ?? Logger::DEBUG);
14
+        $slackTeam = (string) ($options['slackTeam'] ?? '');
15
+        $token     = (string) ($options['token']     ?? '');
16
+        $channel   = (string) ($options['channel']   ?? '');
17
+        $level     = (int) ($options['level']     ?? Logger::DEBUG);
18 18
         $bubble    = (boolean) ($options['bubble']    ?? true);
19 19
 
20 20
         return new SlackbotHandler(
Please login to merge, or discard this patch.
src/Handler/SyslogHandlerFactory.php 1 patch
Spacing   +5 added lines, -5 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\Handler;
5 5
 
@@ -11,11 +11,11 @@  discard block
 block discarded – undo
11 11
 {
12 12
     public function __invoke(array $options)
13 13
     {
14
-        $ident    = (string)  ($options['ident']    ?? '');
15
-        $facility = (int)     ($options['facility'] ?? LOG_USER);
16
-        $level    = (int)     ($options['level']    ?? Logger::DEBUG);
14
+        $ident    = (string) ($options['ident']    ?? '');
15
+        $facility = (int) ($options['facility'] ?? LOG_USER);
16
+        $level    = (int) ($options['level']    ?? Logger::DEBUG);
17 17
         $bubble   = (boolean) ($options['bubble']   ?? true);
18
-        $logOpts  = (int)     ($options['logOpts']  ?? LOG_PID);
18
+        $logOpts  = (int) ($options['logOpts']  ?? LOG_PID);
19 19
 
20 20
         return new SyslogHandler($ident, $facility, $level, $bubble, $logOpts);
21 21
     }
Please login to merge, or discard this patch.