Passed
Push — master ( 9c106a...7b4ed8 )
by Jay
05:53 queued 11s
created
src/StringHandling.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,9 +48,9 @@
 block discarded – undo
48 48
     final public static function sanitize($string)
49 49
     {
50 50
         $a = 'àáâãäçèéêëìíîïñòóôõöùúûüýÿ'
51
-          . 'ÀÁÂÃÄÇÈÉÊËÌÍÎÏÑÒÓÔÕÖÙÚÛÜÝ@!?.:/,;-(){}"= \'\\';
51
+            . 'ÀÁÂÃÄÇÈÉÊËÌÍÎÏÑÒÓÔÕÖÙÚÛÜÝ@!?.:/,;-(){}"= \'\\';
52 52
         $b = 'aaaaaceeeeiiiinooooouuuuyy'
53
-          . 'AAAAACEEEEIIIINOOOOOUUUUY__________________';
53
+            . 'AAAAACEEEEIIIINOOOOOUUUUY__________________';
54 54
         return strtr(utf8_decode($string), utf8_decode($a), $b);
55 55
     }
56 56
 }
Please login to merge, or discard this patch.
src/Ftp/Driver/FtpImplicitSSL.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
                 CURLOPT_SSL_VERIFYPEER => false,
68 68
                 CURLOPT_TIMEOUT => 30,
69 69
             ),
70
-         ), $params);
70
+            ), $params);
71 71
         parent::__construct($params);
72 72
     }
73 73
 
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.
src/Response/Header/ContentDisposition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      */
44 44
     public function setFileName($fileName = null)
45 45
     {
46
-        $this->fileName = is_null($fileName) ? null : (string) $fileName;
46
+        $this->fileName = is_null($fileName) ? null : (string)$fileName;
47 47
         return $this;
48 48
     }
49 49
 
Please login to merge, or discard this patch.
src/Response/Header/Status.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 
15 15
     const VALUE_OK = '200 OK';
16 16
 
17
-    const VALUE_BAD_REQUEST= '400 Bad Request';
17
+    const VALUE_BAD_REQUEST = '400 Bad Request';
18 18
     const VALUE_UNAUTHORIZED = '401 Unauthorized';
19 19
     const VALUE_PAYMENT_REQUIRED = '402 Payment Required';
20 20
     const VALUE_FORBIDDEN = '403 Forbidden';
Please login to merge, or discard this patch.