Completed
Pull Request — master (#66)
by
unknown
01:17
created
src/FilterRule/Append.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,6 +40,6 @@
 block discarded – undo
40 40
      */
41 41
     public function filter($value)
42 42
     {
43
-        return $value . $this->append;
43
+        return $value.$this->append;
44 44
     }
45 45
 }
Please login to merge, or discard this patch.
src/FilterRule/Prepend.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,6 +40,6 @@
 block discarded – undo
40 40
      */
41 41
     public function filter($value)
42 42
     {
43
-        return $this->prepend . $value;
43
+        return $this->prepend.$value;
44 44
     }
45 45
 }
Please login to merge, or discard this patch.
src/FilterRule/UpperFirst.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,12 +28,12 @@
 block discarded – undo
28 28
         if ($this->encodingFormat !== null) {
29 29
             $firstChar = mb_substr($value, 0, 1, $this->encodingFormat);
30 30
             $rest = mb_substr($value, 1, null, $this->encodingFormat);
31
-            return mb_strtoupper($firstChar, $this->encodingFormat) . $rest;
31
+            return mb_strtoupper($firstChar, $this->encodingFormat).$rest;
32 32
         }
33 33
 
34 34
         $firstChar = mb_substr($value, 0, 1);
35 35
         $rest = mb_substr($value, 1);
36 36
 
37
-        return mb_strtoupper($firstChar) . $rest;
37
+        return mb_strtoupper($firstChar).$rest;
38 38
     }
39 39
 }
Please login to merge, or discard this patch.
src/Filter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
             $data = $this->filterValueWithGlobalChain($value, $key, $data);
135 135
         }
136 136
 
137
-        return array_filter($data, function ($value) {
137
+        return array_filter($data, function($value) {
138 138
             return $value || is_numeric($value);
139 139
         });
140 140
     }
Please login to merge, or discard this patch.