Completed
Push — master ( 8a3e78...bda6ff )
by Sebastian
02:39
created
src/Parser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @copyright (c) 2018, Sebastian Rapetti
8 8
  * @license http://opensource.org/licenses/MIT MIT License
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Linna\Filter;
13 13
 
Please login to merge, or discard this patch.
src/Filter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @copyright (c) 2018, Sebastian Rapetti
8 8
  * @license http://opensource.org/licenses/MIT MIT License
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Linna\Filter;
13 13
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
             $field = $rule[0];
136 136
             $filter = $rule[2]['class'];
137 137
 
138
-            $class = 'Linna\Filter\Rules\\' . $filter;
138
+            $class = 'Linna\Filter\Rules\\'.$filter;
139 139
             $refClass = new ReflectionClass($class);
140 140
 
141 141
             $instance = $refClass->newInstance();
Please login to merge, or discard this patch.
src/Rules/Required.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @copyright (c) 2018, Sebastian Rapetti
8 8
  * @license http://opensource.org/licenses/MIT MIT License
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Linna\Filter\Rules;
13 13
 
Please login to merge, or discard this patch.
src/Rules/Escape.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @copyright (c) 2018, Sebastian Rapetti
8 8
  * @license http://opensource.org/licenses/MIT MIT License
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Linna\Filter\Rules;
13 13
 
@@ -25,11 +25,11 @@  discard block
 block discarded – undo
25 25
      * @var array Permitted ASCII table chars in interger format.
26 26
      */
27 27
     private const PERMITTED = [
28
-        32,48,49,50,51,52,53,54,55,56,57,65,66,67,68,
29
-        69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,
30
-        84,85,86,87,88,89,90,97,98,99,100,101,102,103,
31
-        104,105,106,107,108,109,110,111,112,113,114,
32
-        115,116,117,118,119,120,121,122
28
+        32, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 65, 66, 67, 68,
29
+        69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
30
+        84, 85, 86, 87, 88, 89, 90, 97, 98, 99, 100, 101, 102, 103,
31
+        104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
32
+        115, 116, 117, 118, 119, 120, 121, 122
33 33
     ];
34 34
     
35 35
     /**
Please login to merge, or discard this patch.
src/RuleBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @copyright (c) 2018, Sebastian Rapetti
8 8
  * @license http://opensource.org/licenses/MIT MIT License
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Linna\Filter;
13 13
 
Please login to merge, or discard this patch.
src/Rules/Min.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @copyright (c) 2018, Sebastian Rapetti
8 8
  * @license http://opensource.org/licenses/MIT MIT License
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Linna\Filter\Rules;
13 13
 
Please login to merge, or discard this patch.
src/Rules/Email.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @copyright (c) 2018, Sebastian Rapetti
8 8
  * @license http://opensource.org/licenses/MIT MIT License
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Linna\Filter\Rules;
13 13
 
Please login to merge, or discard this patch.
src/Rules/Number.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @copyright (c) 2018, Sebastian Rapetti
8 8
  * @license http://opensource.org/licenses/MIT MIT License
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Linna\Filter\Rules;
13 13
 
Please login to merge, or discard this patch.
src/Rules/Between.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @copyright (c) 2018, Sebastian Rapetti
8 8
  * @license http://opensource.org/licenses/MIT MIT License
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Linna\Filter\Rules;
13 13
 
Please login to merge, or discard this patch.