Completed
Push — master ( 1c0089...da0bc0 )
by Dieter
60:41
created

Reservation::__construct()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 14

Duplication

Lines 14
Ratio 100 %

Code Coverage

Tests 11
CRAP Score 3

Importance

Changes 0
Metric Value
dl 14
loc 14
ccs 11
cts 11
cp 1
rs 9.7998
c 0
b 0
f 0
cc 3
nc 3
nop 3
crap 3
1
<?php
2
/**
3
 * amadeus-ws-client
4
 *
5
 * Copyright 2015 Amadeus Benelux NV
6
 *
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
 * you may not use this file except in compliance with the License.
9
 * You may obtain a copy of the License at
10
 *
11
 * http://www.apache.org/licenses/LICENSE-2.0
12
 *
13
 * Unless required by applicable law or agreed to in writing, software
14
 * distributed under the License is distributed on an "AS IS" BASIS,
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
 * See the License for the specific language governing permissions and
17
 * limitations under the License.
18
 *
19
 * @package Amadeus
20
 * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0
21
 */
22
23
namespace Amadeus\Client\Struct\Air\RetrieveSeatMap;
24
25
/**
26
 * Reservation
27
 *
28
 * @package Amadeus\Client\Struct\Air\RetrieveSeatMap
29
 * @author Dieter Devlieghere <[email protected]>
30
 */
31 View Code Duplication
class Reservation
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
32
{
33
    /**
34
     * @var string
35
     */
36
    public $companyId;
37
38
    /**
39
     * @var string
40
     */
41
    public $controlNumber;
42
43
    /**
44
     * @var string
45
     */
46
    public $controlType;
47
48
    /**
49
     * @var string
50
     */
51
    public $date;
52
53
    /**
54
     * @var string
55
     */
56
    public $time;
57
58
    /**
59
     * Reservation constructor.
60
     *
61
     * @param string $controlNumber
62
     * @param string $companyId
63
     * @param \DateTime|null $date
64
     */
65 12
    public function __construct($controlNumber, $companyId, $date = null)
66
    {
67 12
        $this->controlNumber = $controlNumber;
68 12
        $this->companyId = $companyId;
69
70 12
        if ($date instanceof \DateTime) {
71 8
            $this->date = $date->format('dmy');
72 8
            $timeString = $date->format('Hi');
73
74 8
            if ($timeString !== '0000') {
75 4
                $this->time = $timeString;
76 2
            }
77 4
        }
78 12
    }
79
}
80