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

Issues (866)

Branch: main

app/Console/Commands/Themes/RequireThemeTabler.php (1 issue)

Severity
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
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