Passed
Push — master ( 1c63cf...766e79 )
by Jakub
02:43
created
src/TCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Nexendrie\Utils;
5 5
 
Please login to merge, or discard this patch.
src/Intervals.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Nexendrie\Utils;
5 5
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
   
16 16
   const PATTERN = '/(\{\-?\d+(,\-?\d+)*\})|((?P<start>\[|\])(?P<limit1>\-?\d+|\-Inf),(?P<limit2>\-?\d+|\+Inf)(?P<end>\[|\]))/';
17 17
   
18
-  public static function findInterval(string $text): ?string {
18
+  public static function findInterval(string $text): ? string {
19 19
     $found = preg_match_all(static::PATTERN, $text, $result);
20 20
     if(!$found) {
21 21
       return NULL;
Please login to merge, or discard this patch.