Test Failed
Push — master ( 9c106a...88fe25 )
by Jay
06:44
created
src/Config/Ini/Extended.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace FMUP\Config\Ini;
3 3
 
4
-use FMUP\Config\Exception;
5 4
 use FMUP\Config\Ini;
6 5
 
7 6
 /**
Please login to merge, or discard this patch.
src/Logger/Channel/Error.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace FMUP\Logger\Channel;
3 3
 
4
-use FMUP\Request;
5 4
 use Monolog\Formatter\HtmlFormatter;
6 5
 use Monolog\Handler\NativeMailerHandler;
7 6
 use Monolog\Logger;
Please login to merge, or discard this patch.
src/Dispatcher/Plugin/Version.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      */
40 40
     public function setVersion($version)
41 41
     {
42
-        $this->version = (string) $version;
42
+        $this->version = (string)$version;
43 43
         return $this;
44 44
     }
45 45
 
Please login to merge, or discard this patch.
src/Queue/Channel/Settings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     const PARAM_MAX_MESSAGE_SIZE = 'PARAM_MAX_MESSAGE_SIZE';
14 14
     //(int) max send retry time, default DEFAULT_RETRY_TIMES
15 15
     const PARAM_MAX_SEND_RETRY_TIME = 'PARAM_MAX_SEND_RETRY_TIME';
16
-    const PARAM_CONSUMER_NAME = 'PARAM_CONSUMER_NAME';//(string) define consumer name - default empty
16
+    const PARAM_CONSUMER_NAME = 'PARAM_CONSUMER_NAME'; //(string) define consumer name - default empty
17 17
 
18 18
     //(bool) if process must wait to be sure the message is sent (default false)
19 19
     const PARAM_BLOCK_SEND = 'PARAM_BLOCK_SEND';
Please login to merge, or discard this patch.
src/Config/Ini.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     public function __construct($filePath, $section = null)
17 17
     {
18 18
         $this->filePath = (string)$filePath;
19
-        $this->section = is_null($section) ? null : (string) $section;
19
+        $this->section = is_null($section) ? null : (string)$section;
20 20
     }
21 21
 
22 22
     /**
Please login to merge, or discard this patch.
src/Cache/Driver/Memcached.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
      */
184 184
     public function getSetting($setting)
185 185
     {
186
-        $setting = (string) $setting;
186
+        $setting = (string)$setting;
187 187
         return isset($this->settings[$setting]) ? $this->settings[$setting] : null;
188 188
     }
189 189
 }
Please login to merge, or discard this patch.
src/Import/Config/Field/Validator/Integer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         if (is_float($value) && ((int)$value === 0)) {
32 32
             return false;
33 33
         }
34
-        $valueTest = (int) $value;
34
+        $valueTest = (int)$value;
35 35
         return ($valueTest === 0) ? is_numeric($value) : ($valueTest == $value);
36 36
     }
37 37
 
Please login to merge, or discard this patch.
src/Import/Config/Field/Formatter/IdFromField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     public function format($value)
29 29
     {
30
-        $value = (string) $value;
30
+        $value = (string)$value;
31 31
         if ($value == "") {
32 32
             $this->hasError = true;
33 33
             return "";
Please login to merge, or discard this patch.
src/Response/Header/Authorization.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      */
69 69
     public function getValue()
70 70
     {
71
-        return $this->getAuthorizationType() . ' ' . ($this->getToken() ? : '');
71
+        return $this->getAuthorizationType() . ' ' . ($this->getToken() ?: '');
72 72
     }
73 73
 
74 74
     /**
Please login to merge, or discard this patch.