Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Passed
Push — fix-hooks-at-setup-level ( 2f89cc...692462 )
by Pedro
12:24
created
src/app/Library/CrudPanel/Hooks/LifecycleHooks.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
     public array $hooks = [];
10 10
     private array $executedHooks = [];
11 11
 
12
-    public function hookInto(string|array $hooks, callable $callback): void
12
+    public function hookInto(string | array $hooks, callable $callback): void
13 13
     {
14 14
         $hooks = is_array($hooks) ? $hooks : [$hooks];
15 15
         $controller = CrudManager::getActiveController() ?? CrudManager::getParentController();
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
         }
19 19
     }
20 20
 
21
-    public function trigger(string|array $hooks, array $parameters = []): void
21
+    public function trigger(string | array $hooks, array $parameters = []): void
22 22
     {
23 23
         $hooks = is_array($hooks) ? $hooks : [$hooks];
24 24
         $controller = CrudManager::getActiveController() ?? CrudManager::getParentController();
Please login to merge, or discard this patch.