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.
Test Setup Failed
Branch master (41c46a)
by Nikhil
09:01 queued 21s
created

NotificationWasDismissed::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 0
cts 3
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 0
crap 2
1
<?php
2
3
namespace App\Events;
4
5
use App\Events\Event;
6
use Illuminate\Queue\SerializesModels;
7
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
8
9
class NotificationWasDismissed extends Event implements ShouldBroadcast
10
{
11
    use SerializesModels;
12
13
    /**
14
     * Create a new event instance.
15
     */
16
    public function __construct()
17
    {
18
        //
19
    }
20
21
    /**
22
     * Get the channels the event should be broadcast on.
23
     *
24
     * @return array
25
     */
26
    public function broadcastOn()
27
    {
28
        return ['default'];
29
    }
30
}
31