Passed
Branch feature/php8.3 (4d3b0a)
by Tim
17:15
created
src/XML/Assert/DateTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      * and the least upper bound of the interval is the timeline point represented (noncanonically) by:
23 23
      * '-' yyyy '-' mm '-' dd 'T24:00:00' zzzzzz?.
24 24
      */
25
-    private static string $date_regex  = '/^
25
+    private static string $date_regex = '/^
26 26
         -?
27 27
         ([1-9][0-9]*|[0-9]{4})
28 28
         -
Please login to merge, or discard this patch.
src/XML/Assert/YearMonthTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
  */
12 12
 trait YearMonthTrait
13 13
 {
14
-    private static string $yearmonth_regex  = '/^
14
+    private static string $yearmonth_regex = '/^
15 15
         -?
16 16
         ([1-9][0-9]*|[0-9]{4})
17 17
         -
Please login to merge, or discard this patch.
src/XML/Assert/MonthTrait.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
      * Format --MM with optional timezone representation
16 16
      */
17
-    private static string $month_regex  = '/^--(0[1-9]|1[012])((\+|-)([0-1][0-9]|2[0-4]):(0[0-9]|[1-5][0-9])|Z)?$/D';
17
+    private static string $month_regex = '/^--(0[1-9]|1[012])((\+|-)([0-1][0-9]|2[0-4]):(0[0-9]|[1-5][0-9])|Z)?$/D';
18 18
 
19 19
 
20 20
     /**
Please login to merge, or discard this patch.
src/XML/Assert/DayTrait.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
      * Format: ---DD with optional timezone representation
16 16
      */
17
-    private static string $day_regex  = '/^
17
+    private static string $day_regex = '/^
18 18
         ---
19 19
         (0[1-9]|1[1-9]|2[1-9]|3[01])
20 20
         ([+-]([0-1][0-9]|2[0-4]):(0[0-9]|[1-5][0-9])|Z)
Please login to merge, or discard this patch.
src/XMLSchema/XML/AbstractAnyType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@
 block discarded – undo
21 21
 
22 22
 
23 23
     /** The namespace-attribute for the xs:any element */
24
-    public const string|array XS_ANY_ELT_NAMESPACE = NS::ANY;
24
+    public const string | array XS_ANY_ELT_NAMESPACE = NS::ANY;
25 25
 
26 26
     /** The namespace-attribute for the xs:anyAttribute element */
27
-    public const string|array XS_ANY_ATTR_NAMESPACE = NS::ANY;
27
+    public const string | array XS_ANY_ATTR_NAMESPACE = NS::ANY;
28 28
 
29 29
 
30 30
     /**
Please login to merge, or discard this patch.
src/XMLSchema/XML/Appinfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     public const string LOCALNAME = 'appinfo';
31 31
 
32 32
     /** The namespace-attribute for the xs:anyAttribute element */
33
-    public const array|string XS_ANY_ATTR_NAMESPACE = NS::OTHER;
33
+    public const array | string XS_ANY_ATTR_NAMESPACE = NS::OTHER;
34 34
 
35 35
 
36 36
     /**
Please login to merge, or discard this patch.