| Total Complexity | 6 |
| Total Lines | 86 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class StandardParametersData |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var int |
||
| 11 | */ |
||
| 12 | private $depth; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var int |
||
| 16 | */ |
||
| 17 | private $indents; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var int |
||
| 21 | */ |
||
| 22 | private $level; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $serviceAliasingType; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | private $indentsCommentsWithoutParent; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param int $depth |
||
| 36 | * @param int $indents |
||
| 37 | * @param int $level |
||
| 38 | * @param string $serviceAliasingType |
||
| 39 | * @param string $indentsCommentsWithoutParent |
||
| 40 | */ |
||
| 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 | } |
|
| 54 | |||
| 55 | /** |
||
| 56 | * @return int |
||
| 57 | */ |
||
| 58 | 3 | public function getDepth(): int |
|
| 59 | { |
||
| 60 | 3 | return $this->depth; |
|
| 61 | } |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @return int |
||
| 65 | */ |
||
| 66 | 13 | public function getIndents(): int |
|
| 69 | } |
||
| 70 | |||
| 71 | /** |
||
| 72 | * @return int |
||
| 73 | */ |
||
| 74 | 6 | public function getLevel(): int |
|
| 77 | } |
||
| 78 | |||
| 79 | /** |
||
| 80 | * @return string |
||
| 81 | */ |
||
| 82 | 10 | public function getServiceAliasingType(): string |
|
| 83 | { |
||
| 84 | 10 | return $this->serviceAliasingType; |
|
| 85 | } |
||
| 86 | |||
| 87 | /** |
||
| 88 | * @return string |
||
| 89 | */ |
||
| 90 | 8 | public function getIndentsCommentsWithoutParent(): string |
|
| 93 | } |
||
| 94 | } |
||
| 95 |