Completed
Push — master ( 8569d0...eaf770 )
by Sebastian
05:02 queued 02:31
created
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/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/Date.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/Lexer.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/DateCompare.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/RulesHelper/AbstractDate.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\Rules;
13 13
 
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     protected function dateHaveNoTime(string $format): bool
26 26
     {
27
-        foreach (['a','A','B','g','G','h','H','i','s','u','v'] as $char) {
27
+        foreach (['a', 'A', 'B', 'g', 'G', 'h', 'H', 'i', 's', 'u', 'v'] as $char) {
28 28
             if (strpos($format, $char) !== false) {
29 29
                 return false;
30 30
             }
Please login to merge, or discard this patch.