@@ -31,7 +31,7 @@ |
||
31 | 31 | * @param bool $assoc |
32 | 32 | * @return \stdClass|array<string, mixed>|null |
33 | 33 | */ |
34 | - public function read(bool $assoc = false): array|stdClass|null |
|
34 | + public function read(bool $assoc = false): array | stdClass | null |
|
35 | 35 | { |
36 | 36 | $json = json_decode(parent::read(), $assoc); |
37 | 37 | if (json_last_error() !== JSON_ERROR_NONE) { |
@@ -162,7 +162,7 @@ |
||
162 | 162 | { |
163 | 163 | $issueID = preg_replace_callback( |
164 | 164 | '/\$(\d+)/', |
165 | - function ($matches) use ($issueID) { |
|
165 | + function($matches) use ($issueID) { |
|
166 | 166 | return $matches[1] === '1' ? $issueID : ''; |
167 | 167 | }, |
168 | 168 | $pattern |