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 — v6-livewire-widget ( bb8951...53543e )
by Pedro
14:58
created

RequireThemeTabler::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 RequireThemeTabler 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...emes\RequireThemeTabler: $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-tabler
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 Tabler theme';
25
26
    /**
27
     * Backpack addons install attribute.
28
     *
29
     * @var array
30
     */
31
    public static $addon = [
32
        'name'        => 'Tabler <fg=green>(default)</>',
33
        'description' => [
34
            'UI provided by Tabler, a Boostrap 5 template. Lots of new features, including a dark mode.',
35
            '<fg=blue>https://github.com/laravel-backpack/theme-tabler/</>',
36
        ],
37
        'repo'    => 'backpack/theme-tabler',
38
        'path'    => 'vendor/backpack/theme-tabler',
39
        'command' => 'backpack:require:theme-tabler',
40
        'view_namespace' => 'backpack.theme-tabler::',
41
        'publish_tag' => 'theme-tabler-config',
42
        'provider' => '\Backpack\ThemeTabler\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