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::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
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