Skip to content

Commit c59deff

Browse files
Fixed phpcs issues in Installer class
1 parent 67f961a commit c59deff

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Runner/Installer.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,9 @@ public function getHooksToInstall(): array
198198
// if a specific hook is set, the use has actively chosen it, so don't ask for permission anymore
199199
return empty($this->hooksToHandle)
200200
? array_map($callback, Hooks::nativeHooks())
201-
: array_map(static function (): bool { return false; }, array_flip($this->hooksToHandle));
201+
: array_map(static function (): bool {
202+
return false;
203+
}, array_flip($this->hooksToHandle));
202204
}
203205

204206
/**

0 commit comments

Comments
 (0)