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 — poc-backpack-components ( 997beb...192cbc )
by Pedro
15:02
created
src/app/Library/Components/BaseComponent.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
         return new static($attributes);
17 17
     }
18 18
 
19
-    public static function make(string|array $name): SmartComponentInterface
19
+    public static function make(string | array $name): SmartComponentInterface
20 20
     {
21 21
         $attributes = new BaseCollection($name, static::attributes(), static::rules(), static::defaults(), static::blocked());
22 22
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     public function __call($name, $arguments)
32 32
     {
33
-        if (! method_exists($this, $name)) {
33
+        if (!method_exists($this, $name)) {
34 34
             if ($this->isAttributeBlocked($name)) {
35 35
                 throw new \Exception("Attribute {$name} cannot be changed in this component.");
36 36
             }
Please login to merge, or discard this patch.