Passed
Push — master ( f4145f...eee8ec )
by Artem
03:30
created

CompanyDetails::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Amadeus\Client\Struct\Fare\TLAGetFareRules;
4
5
class CompanyDetails
6
{
7
    const COMPANY_INDUSTRY_CAR_RENTAL = '7CC';
8
    const COMPANY_INDUSTRY_HOTEL_CHAINS = '7HH';
9
10
    /**
11
     * @var string
12
     */
13
    public $marketingCompany;
14
15
    /**
16
     * CompanyDetails constructor.
17
     *
18
     * @param string $marketingCompany
19
     */
20
    public function __construct($marketingCompany)
21
    {
22
        $this->marketingCompany = $marketingCompany;
23
    }
24
}
25