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 (16)

src/Http/VerifyNewEmailController.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace ProtoneMedia\LaravelVerifyNewEmail\Http;
4
5
use Illuminate\Routing\Controller;
6
7
class VerifyNewEmailController extends Controller
8
{
9
    /*
10
    |--------------------------------------------------------------------------
11
    | Verify New Email Controller
12
    |--------------------------------------------------------------------------
13
    |
14
    | This controller is responsible for verifying and activating new user email
15
    | addresses and uses a simple trait to include this behavior.
16
    |
17
    */
18
19
    use VerifiesPendingEmails;
0 ignored issues
show
The trait ProtoneMedia\LaravelVeri...p\VerifiesPendingEmails requires the property $user which is not provided by ProtoneMedia\LaravelVeri...erifyNewEmailController.
Loading history...
20
21
    /**
22
     * Create a new controller instance.
23
     *
24
     * @return void
25
     */
26
    public function __construct()
27
    {
28
        $this->middleware('throttle:6,1');
29
    }
30
}
31