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 ( 2fe938...e8e1b6 )
by Freek
07:44
created

src/Commands/CreateMonitor.php (1 issue)

Labels
Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Spatie\UptimeMonitor\Commands;
4
5
use Spatie\Url\Url;
6
use Spatie\UptimeMonitor\Models\Monitor;
7
8
class CreateMonitor extends BaseCommand
9
{
10
    protected $signature = 'monitor:create {url}';
11
12
    protected $description = 'Create a monitor';
13
14
    public function handle()
15
    {
16
        $url = Url::fromString($this->argument('url'));
0 ignored issues
show
It seems like $this->argument('url') targeting Illuminate\Console\Command::argument() can also be of type array; however, Spatie\Url\Url::fromString() does only seem to accept string, maybe add an additional type check?

This check looks at variables that are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
17
18
        if (! in_array($url->getScheme(), ['http', 'https'])) {
19
            $this->error('The given url did not start with `http://` or `https://`.');
20
21
            return;
22
        }
23
24
        if ($this->confirm('Should we look for a specific string on the response?')) {
25
            $lookForString = $this->ask('Which string?');
26
        }
27
28
        $monitor = Monitor::create([
29
            'url' => trim($url, '/'),
30
            'look_for_string' => $lookForString ?? '',
31
            'uptime_check_method' => isset($lookForString) ? 'get' : 'head',
32
            'certificate_check_enabled' => $url->getScheme() === 'https',
33
            'uptime_check_interval_in_minutes' => config('laravel-uptime-monitor.uptime_check.run_interval_in_minutes'),
34
        ]);
35
36
        $this->warn("{$monitor->url} will be monitored!");
37
    }
38
}
39