Passed
Pull Request — main (#4432)
by Greg
23:15 queued 16:39
created
app/Webtrees.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -296,7 +296,7 @@
 block discarded – undo
296 296
      * @param string        $abstract
297 297
      * @param string|object $concrete
298 298
      */
299
-    public static function set(string $abstract, string|object $concrete): void
299
+    public static function set(string $abstract, string | object $concrete): void
300 300
     {
301 301
         if (is_string($concrete)) {
302 302
             Container::getInstance()->bind($abstract, $concrete);
Please login to merge, or discard this patch.
app/Date/AbstractCalendarDate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      *
81 81
      * @param array<string>|int|AbstractCalendarDate $date
82 82
      */
83
-    protected function __construct(array|int|AbstractCalendarDate $date)
83
+    protected function __construct(array | int | AbstractCalendarDate $date)
84 84
     {
85 85
         // Construct from an integer (a julian day number)
86 86
         if (is_int($date)) {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
             $this->month = static::MONTH_TO_NUMBER[$date[1]] ?? 0;
98 98
 
99 99
             if ($this->month === 0) {
100
-                $this->day   = 0;
100
+                $this->day = 0;
101 101
             }
102 102
 
103 103
             $this->year = $this->extractYear($date[0]);
Please login to merge, or discard this patch.
app/Contracts/ResponseFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
      *
63 63
      * @return ResponseInterface
64 64
      */
65
-    public function response(string|array|object $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface;
65
+    public function response(string | array | object $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface;
66 66
 
67 67
     /**
68 68
      * Create and render a view, and embed it in an HTML page.
Please login to merge, or discard this patch.
app/Session.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      *
110 110
      * @return array|bool|int|null|string
111 111
      */
112
-    public static function get(string $name, array|bool|int|string $default = null)
112
+    public static function get(string $name, array | bool | int | string $default = null)
113 113
     {
114 114
         return $_SESSION[$name] ?? $default;
115 115
     }
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      *
122 122
      * @return array|bool|int|null|string
123 123
      */
124
-    public static function pull(string $name): array|bool|int|null|string
124
+    public static function pull(string $name): array | bool | int | null | string
125 125
     {
126 126
         $value = self::get($name);
127 127
         self::forget($name);
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
      *
166 166
      * @return void
167 167
      */
168
-    public static function put(string $name, array|bool|int|null|string $value): void
168
+    public static function put(string $name, array | bool | int | null | string $value): void
169 169
     {
170 170
         $_SESSION[$name] = $value;
171 171
     }
Please login to merge, or discard this patch.
app/I18N.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -269,7 +269,7 @@
 block discarded – undo
269 269
      *
270 270
      * @return string
271 271
      */
272
-    public static function digits(string|int $n): string
272
+    public static function digits(string | int $n): string
273 273
     {
274 274
         return self::$locale->digits((string) $n);
275 275
     }
Please login to merge, or discard this patch.
app/Factories/ResponseFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      *
100 100
      * @return ResponseInterface
101 101
      */
102
-    public function response(string|array|object $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface
102
+    public function response(string | array | object $content = '', int $code = StatusCodeInterface::STATUS_OK, array $headers = []): ResponseInterface
103 103
     {
104 104
         if ($content === '' && $code === StatusCodeInterface::STATUS_OK) {
105 105
             $code = StatusCodeInterface::STATUS_NO_CONTENT;
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         if (is_string($content)) {
109 109
             $headers['content-type'] ??= 'text/html; charset=UTF-8';
110 110
         } else {
111
-            $content                 = json_encode($content, JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE);
111
+            $content = json_encode($content, JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE);
112 112
             $headers['content-type'] ??= 'application/json';
113 113
         }
114 114
 
Please login to merge, or discard this patch.