@@ -84,7 +84,7 @@ |
||
84 | 84 | { |
85 | 85 | $arg = new Arg( |
86 | 86 | $hook, |
87 | - static function (string $hook): bool { |
|
87 | + static function(string $hook): bool { |
|
88 | 88 | return !HookUtil::isInstallable($hook); |
89 | 89 | } |
90 | 90 | ); |
@@ -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 |