Passed
Push — main ( 2bc5a4...5ffc2f )
by Vasil
16:31 queued 13:09
created

TrackRequest::toArray()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 4
ccs 3
cts 3
cp 1
crap 1
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace VasilDakov\Speedy\Service\Track;
6
7
use VasilDakov\Speedy\Speedy;
8
9
/**
10
 * Class TrackRequest.
11
 *
12
 * @author Vasil Dakov <[email protected]>
13
 * @copyright 2009-2022 Neutrino.bg
14
 *
15
 * @version 1.0
16
 */
17
class TrackRequest
18
{
19
    private array $parcels;
20
21 2
    public function __construct(array $parcels)
22
    {
23 2
        $this->parcels = $parcels;
24
    }
25
26 1
    public function getParcels(): array
27
    {
28 1
        return $this->parcels;
29
    }
30
31 1
    public function toArray(): array
32
    {
33 1
        return [
34 1
            Speedy::PARCELS => $this->parcels,
35 1
        ];
36
    }
37
}
38