Completed
Push — master ( 2eb89a...0fd1a8 )
by Dieter
13:44
created

CriteriaDetails   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 17
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Amadeus\Client\Struct\Ticket\CreateTASF;
4
5
class CriteriaDetails
6
{
7
    /**
8
     * @var string
9
     */
10
    public $attributeType;
11
12
    /**
13
     * CriteriaDetails constructor.
14
     *
15
     * @param string $type
16
     */
17 4
    public function __construct($type)
18
    {
19 4
        $this->attributeType = $type;
20 4
    }
21
}
22