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
Pull Request — v6 (#4971)
by Pedro
30:02 queued 15:18
created

RequireThemeCoreuiv4::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 1
b 0
f 0
1
<?php
2
3
namespace Backpack\CRUD\app\Console\Commands\Themes;
4
5
use Illuminate\Console\Command;
6
7
class RequireThemeCoreuiv4 extends Command
8
{
9
    use InstallsTheme;
0 ignored issues
show
introduced by
The trait Backpack\CRUD\app\Consol...ds\Themes\InstallsTheme requires some properties which are not provided by Backpack\CRUD\app\Consol...es\RequireThemeCoreuiv4: $progressBar, $statusColor, $status, $repositories
Loading history...
10
11
    /**
12
     * The name and signature of the console command.
13
     *
14
     * @var string
15
     */
16
    protected $signature = 'backpack:require:theme-coreuiv4
17
                                {--debug} : Show process output or not. Useful for debugging.';
18
19
    /**
20
     * The console command description.
21
     *
22
     * @var string
23
     */
24
    protected $description = 'Install the CoreUIv4 theme';
25
26
    /**
27
     * Backpack addons install attribute.
28
     *
29
     * @var array
30
     */
31
    public static $addon = [
32
        'name'        => 'CoreUIv4',
33
        'description' => [
34
            'UI provided by CoreUIv4, a Boostrap 5 template.',
35
            '<fg=blue>https://github.com/laravel-backpack/theme-coreuiv4/</>',
36
        ],
37
        'repo'    => 'backpack/theme-coreuiv4',
38
        'path'    => 'vendor/backpack/theme-coreuiv4',
39
        'command' => 'backpack:require:theme-coreuiv4',
40
        'view_namespace' => 'backpack.theme-coreuiv4::',
41
        'publish_tag' => 'theme-coreuiv4-config',
42
        'provider' => '\Backpack\ThemeCoreuiv4\AddonServiceProvider',
43
    ];
44
45
    /**
46
     * Execute the console command.
47
     *
48
     * @return mixed Command-line output
49
     */
50
    public function handle()
51
    {
52
        $this->installTheme();
53
    }
54
}
55