Completed
Push — master ( 1be28f...86f8a4 )
by Westin
01:52
created
src/Handler/MongoDBHandlerFactory.php 1 patch
Spacing   +4 added lines, -4 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
 
@@ -16,9 +16,9 @@  discard block
 block discarded – undo
16 16
     public function __invoke(array $options)
17 17
     {
18 18
         $client     = $this->getClient($options);
19
-        $database   = (string)  ($options['database']   ?? '');
20
-        $collection = (string)  ($options['collection'] ?? '');
21
-        $level      = (int)     ($options['level']      ?? Logger::DEBUG);
19
+        $database   = (string) ($options['database']   ?? '');
20
+        $collection = (string) ($options['collection'] ?? '');
21
+        $level      = (int) ($options['level']      ?? Logger::DEBUG);
22 22
         $bubble     = (boolean) ($options['bubble']     ?? true);
23 23
 
24 24
         return new MongoDBHandler(
Please login to merge, or discard this patch.
src/Handler/CouchDBHandlerFactory.php 1 patch
Spacing   +7 added lines, -7 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,12 +11,12 @@  discard block
 block discarded – undo
11 11
 {
12 12
     public function __invoke(array $options)
13 13
     {
14
-        $host     = (string)  ($options['host']     ?? 'localhost');
15
-        $port     = (int)     ($options['port']     ?? 5984);
16
-        $dbname   = (string)  ($options['port']     ?? 'logger');
17
-        $userName = (string)  ($options['username'] ?? '');
18
-        $password = (string)  ($options['password'] ?? '');
19
-        $level    = (int)     ($options['level']    ?? Logger::DEBUG);
14
+        $host     = (string) ($options['host']     ?? 'localhost');
15
+        $port     = (int) ($options['port']     ?? 5984);
16
+        $dbname   = (string) ($options['port']     ?? 'logger');
17
+        $userName = (string) ($options['username'] ?? '');
18
+        $password = (string) ($options['password'] ?? '');
19
+        $level    = (int) ($options['level']    ?? Logger::DEBUG);
20 20
         $bubble   = (boolean) ($options['bubble']   ?? true);
21 21
 
22 22
         return new CouchDBHandler(
Please login to merge, or discard this patch.
src/Handler/DoctrineCouchDBHandlerFactory.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\Handler;
5 5
 
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     public function __invoke(array $options)
17 17
     {
18 18
         $client  = $this->getClient($options);
19
-        $level   = (int)     ($options['level']   ?? Logger::DEBUG);
19
+        $level   = (int) ($options['level']   ?? Logger::DEBUG);
20 20
         $bubble  = (boolean) ($options['bubble']  ?? true);
21 21
 
22 22
         return new DoctrineCouchDBHandler(
Please login to merge, or discard this patch.
src/Handler/ElasticSearchHandlerFactory.php 1 patch
Spacing   +4 added lines, -4 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
 
@@ -16,10 +16,10 @@  discard block
 block discarded – undo
16 16
     public function __invoke(array $options)
17 17
     {
18 18
         $client      = $this->getClient($options);
19
-        $index       = (string)  ($options['index']       ?? 'monolog');
20
-        $type        = (string)  ($options['type']        ?? 'record');
19
+        $index       = (string) ($options['index']       ?? 'monolog');
20
+        $type        = (string) ($options['type']        ?? 'record');
21 21
         $ignoreError = (boolean) ($options['ignoreError'] ?? false);
22
-        $level       = (int)     ($options['level']       ?? Logger::DEBUG);
22
+        $level       = (int) ($options['level']       ?? Logger::DEBUG);
23 23
         $bubble      = (boolean) ($options['bubble']      ?? true);
24 24
 
25 25
         return new ElasticSearchHandler(
Please login to merge, or discard this patch.
src/Handler/DynamoDbHandlerFactory.php 1 patch
Spacing   +3 added lines, -3 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
 
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
     public function __invoke(array $options)
17 17
     {
18 18
         $client  = $this->getClient($options);
19
-        $table   = (string)  ($options['table']  ?? null);
20
-        $level   = (int)     ($options['level']  ?? Logger::DEBUG);
19
+        $table   = (string) ($options['table']  ?? null);
20
+        $level   = (int) ($options['level']  ?? Logger::DEBUG);
21 21
         $bubble  = (boolean) ($options['bubble'] ?? true);
22 22
 
23 23
         return new DynamoDbHandler(
Please login to merge, or discard this patch.
src/Service/AbstractServiceManager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -95,6 +95,9 @@
 block discarded – undo
95 95
         return $this->config->hasHandlerConfig($id);
96 96
     }
97 97
 
98
+    /**
99
+     * @param string $id
100
+     */
98 101
     protected function getInstanceFromFactory($id)
99 102
     {
100 103
         $class   = null;
Please login to merge, or discard this patch.
src/Exception/UnknownServiceException.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\Exception;
5 5
 
Please login to merge, or discard this patch.
src/ConfigInterface.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/Service/HandlerManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             return $handler;
33 33
         }
34 34
 
35
-        $formatter= $config->getFormatter();
35
+        $formatter = $config->getFormatter();
36 36
 
37 37
         if ($formatter) {
38 38
             $handler->setFormatter($this->getFormatter($formatter));
Please login to merge, or discard this patch.