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 ( ea9462...f6a83c )
by Nikhil
10:26
created

PurchaseWasCreated   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 2
dl 0
loc 20
ccs 0
cts 4
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace App\Events;
4
5
use App\Purchase;
6
use Illuminate\Queue\SerializesModels;
7
8
class PurchaseWasCreated extends Event
9
{
10
    use SerializesModels;
11
12
    /**
13
     * The purchase that was created.
14
     * @var Purchase
15
     */
16
    public $purchase;
17
18
    /**
19
     * Create a new event instance.
20
     *
21
     * @param Purchase $purchase
22
     */
23
    public function __construct(Purchase $purchase)
24
    {
25
        $this->purchase = $purchase;
26
    }
27
}
28