Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | 36 | public function __construct( |
|
48 | int $depth, |
||
49 | int $indents, |
||
50 | int $level, |
||
51 | string $serviceAliasingType, |
||
52 | string $indentsCommentsWithoutParent, |
||
53 | array $alphabeticalPrioritizedKeys |
||
54 | ) { |
||
55 | 36 | $this->depth = $depth; |
|
56 | 36 | $this->indents = $indents; |
|
57 | 36 | $this->level = $level; |
|
58 | 36 | $this->serviceAliasingType = $serviceAliasingType; |
|
59 | 36 | $this->indentsCommentsWithoutParent = $indentsCommentsWithoutParent; |
|
60 | 36 | $this->alphabeticalPrioritizedKeys = $alphabeticalPrioritizedKeys; |
|
61 | 36 | } |
|
111 |