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.

Issues (23)

src/Middleware/UserContext.php (1 issue)

Severity
1
<?php
2
3
namespace Honeybadger\HoneybadgerLaravel\Middleware;
4
5
/**
6
 * @deprecated Honeybadger now adds the context automatically
7
 */
8
class UserContext extends HoneybadgerContext
0 ignored issues
show
Deprecated Code introduced by
The class Honeybadger\HoneybadgerL...ware\HoneybadgerContext has been deprecated: Honeybadger adds the context automatically ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

8
class UserContext extends /** @scrutinizer ignore-deprecated */ HoneybadgerContext
Loading history...
9
{
10
    // Backwards Compatibility
11
}
12