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.

Transport   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 30
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
1
<?php
2
3
4
namespace HomeDesignShops\LaravelBolComRetailer\Models;
5
6
7
class Transport
8
{
9
    /**
10
     * @var string
11
     */
12
    public $transporterCode;
13
14
    /**
15
     * @var string
16
     */
17
    public $trackAndTraceCode;
18
19
    /**
20
     * @var string
21
     */
22
    public $shipmentReference;
23
24
    /**
25
     * TransportItem constructor.
26
     * @param string $transporterCode
27
     * @param string $trackingCode
28
     * @param string $shipmentReference
29
     */
30
    public function __construct(string $transporterCode, string $trackingCode, string $shipmentReference)
31
    {
32
        $this->transporterCode = $transporterCode;
33
        $this->trackAndTraceCode = $trackingCode;
34
        $this->shipmentReference = $shipmentReference;
35
    }
36
}
37