We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f961a commit c59deffCopy full SHA for c59deff
src/Runner/Installer.php
@@ -198,7 +198,9 @@ public function getHooksToInstall(): array
198
// if a specific hook is set, the use has actively chosen it, so don't ask for permission anymore
199
return empty($this->hooksToHandle)
200
? array_map($callback, Hooks::nativeHooks())
201
- : array_map(static function (): bool { return false; }, array_flip($this->hooksToHandle));
+ : array_map(static function (): bool {
202
+ return false;
203
+ }, array_flip($this->hooksToHandle));
204
}
205
206
/**
0 commit comments