Passed
Push — master ( 10cd5c...92ee40 )
by Jhao
02:18
created

ItemsWrapper::getPreparedAt()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 0
dl 0
loc 6
ccs 5
cts 5
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * This file is part of RussianPost SDK package.
5
 *
6
 * © Appwilio (http://appwilio.com), greabock (https://github.com/greabock), JhaoDa (https://github.com/jhaoda)
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace Appwilio\RussianPostSDK\Tracking\Packet;
15
16
final class ItemsWrapper
17
{
18
    /** @var Item[]|Item */
19
    private $Item;
20
21
    /** @var string */
22
    private $DatePreparation;
23
24
    /**
25
     * @return Item[]
26
     */
27 1
    public function getItems()
28
    {
29 1
        if ($this->Item instanceof Item) {
30 1
            $this->Item = [$this->Item];
31
        }
32
33 1
        return $this->Item;
34
    }
35
36
    /**
37
     * @return \DateTimeImmutable
38
     */
39 1
    public function getPreparedAt(): \DateTimeImmutable
40
    {
41 1
        return \DateTimeImmutable::createFromFormat(
42 1
            'd.m.Y h:i:s',
43 1
            $this->DatePreparation,
44 1
            new \DateTimeZone('Europe/Moscow')
45
        );
46
    }
47
}
48