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.

Code Duplication    Length = 26-26 lines in 2 locations

src/Commands/DisableMonitor.php 1 location

@@ 7-32 (lines=26) @@
4
5
use Spatie\UptimeMonitor\MonitorRepository;
6
7
class DisableMonitor extends BaseCommand
8
{
9
    protected $signature = 'monitor:disable {url}';
10
11
    protected $description = 'Disable a monitor';
12
13
    public function handle()
14
    {
15
        foreach (explode(',', $this->argument('url')) as $url) {
16
            $this->disableMonitor(trim($url));
17
        }
18
    }
19
20
    protected function disableMonitor(string $url)
21
    {
22
        if (! $monitor = MonitorRepository::findByUrl($url)) {
23
            $this->error("There is no monitor configured for url `{$url}`.");
24
25
            return;
26
        }
27
28
        $monitor->disable();
29
30
        $this->info("The checks for url `{$url}` are now disabled.");
31
    }
32
}
33

src/Commands/EnableMonitor.php 1 location

@@ 7-32 (lines=26) @@
4
5
use Spatie\UptimeMonitor\MonitorRepository;
6
7
class EnableMonitor extends BaseCommand
8
{
9
    protected $signature = 'monitor:enable {url}';
10
11
    protected $description = 'Enable a monitor';
12
13
    public function handle()
14
    {
15
        foreach (explode(',', $this->argument('url')) as $url) {
16
            $this->enableMonitor(trim($url));
17
        }
18
    }
19
20
    protected function enableMonitor(string $url)
21
    {
22
        if (! $monitor = MonitorRepository::findByUrl($url)) {
23
            $this->error("There is no monitor configured for url `{$url}`.");
24
25
            return;
26
        }
27
28
        $monitor->enable();
29
30
        $this->info("The checks for url `{$url}` are now enabled.");
31
    }
32
}
33