Passed
Push — develop ( d85fcd...ab3954 )
by nguereza
11:48
created
src/Page.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      * The page number
58 58
      * @var int|string
59 59
      */
60
-    protected int|string $number;
60
+    protected int | string $number;
61 61
 
62 62
     /**
63 63
      * The page URL
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      * @param string|null $url
78 78
      * @param bool $current
79 79
      */
80
-    public function __construct(int|string $number, ?string $url, bool $current = false)
80
+    public function __construct(int | string $number, ?string $url, bool $current = false)
81 81
     {
82 82
         $this->number = $number;
83 83
         $this->url = $url;
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      * Return the page number
89 89
      * @return int|string
90 90
      */
91
-    public function getNumber(): int|string
91
+    public function getNumber(): int | string
92 92
     {
93 93
         return $this->number;
94 94
     }
Please login to merge, or discard this patch.