| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 41 | 31 | public function __construct( |
|
| 42 | int $depth, |
||
| 43 | int $indents, |
||
| 44 | int $level, |
||
| 45 | string $serviceAliasingType, |
||
| 46 | string $indentsCommentsWithoutParent |
||
| 47 | ) { |
||
| 48 | 31 | $this->depth = $depth; |
|
| 49 | 31 | $this->indents = $indents; |
|
| 50 | 31 | $this->level = $level; |
|
| 51 | 31 | $this->serviceAliasingType = $serviceAliasingType; |
|
| 52 | 31 | $this->indentsCommentsWithoutParent = $indentsCommentsWithoutParent; |
|
| 53 | 31 | } |
|
| 95 |