GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 2e6529...409123 )
by Freek
01:48
created

ListSites   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 4

Importance

Changes 0
Metric Value
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 4

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 6 1
1
<?php
2
3
namespace Spatie\UptimeMonitor\Commands;
4
5
use Illuminate\Console\Command;
6
use Spatie\UptimeMonitor\Commands\UptimeMonitorLists\DownSites;
7
use Spatie\UptimeMonitor\Commands\UptimeMonitorLists\HealthySites;
8
use Spatie\UptimeMonitor\Commands\UptimeMonitorLists\SitesWithSslProblems;
9
10
class ListSites extends Command
11
{
12
    protected $signature = 'sites:list';
13
14
    protected $description = 'List all sites';
15
16
    public function handle()
17
    {
18
        (new DownSites($this))->display();
19
        (new SitesWithSslProblems($this))->display();
20
        (new HealthySites($this))->display();
21
    }
22
}
23