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.

Honeybadger::getFacadeAccessor()   A
last analyzed

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
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Honeybadger\HoneybadgerLaravel\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
7
/**
8
 * @method static void checkin(string $key)
9
 * @method static array rawNotification(callable $callable)
10
 * @method static array customNotification(array $payload)
11
 * @method static array notify(\Throwable $throwable, \Symfony\Component\HttpFoundation\Request $request = null, array $additionalParams = [])
12
 * @method static \Honeybadger\Contracts\Reporter context(int|string|array $key, $value = null)
13
 * @method static \Honeybadger\Contracts\Reporter addBreadcrumb(string $message, array $metadata = [], string $category = 'custom')
14
 * @method static \Honeybadger\Contracts\Reporter resetContext()
15
 * @method static \Honeybadger\Contracts\Reporter clear()
16
 */
17
class Honeybadger extends Facade
18
{
19
    /**
20
     * @return string
21
     */
22
    public static function getFacadeAccessor(): string
23
    {
24
        return 'honeybadger';
25
    }
26
}
27