| Total Complexity | 5 |
| Total Lines | 66 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class StandardParametersData |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var int|null |
||
| 11 | */ |
||
| 12 | private $depth; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var int|null |
||
| 16 | */ |
||
| 17 | private $indents; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var int|null |
||
| 21 | */ |
||
| 22 | private $level; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string|null |
||
| 26 | */ |
||
| 27 | private $serviceAliasingType; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param int|null $depth |
||
| 31 | * @param int|null $indents |
||
| 32 | * @param int|null $level |
||
| 33 | * @param string|null $serviceAliasingType |
||
| 34 | */ |
||
| 35 | 29 | public function __construct(?int $depth, ?int $indents, ?int $level, ?string $serviceAliasingType) |
|
| 36 | { |
||
| 37 | 29 | $this->depth = $depth; |
|
| 38 | 29 | $this->indents = $indents; |
|
| 39 | 29 | $this->level = $level; |
|
| 40 | 29 | $this->serviceAliasingType = $serviceAliasingType; |
|
| 41 | 29 | } |
|
| 42 | |||
| 43 | /** |
||
| 44 | * @return int|null |
||
| 45 | */ |
||
| 46 | 3 | public function getDepth(): ?int |
|
| 47 | { |
||
| 48 | 3 | return $this->depth; |
|
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return int|null |
||
| 53 | */ |
||
| 54 | 11 | public function getIndents(): ?int |
|
| 57 | } |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @return int|null |
||
| 61 | */ |
||
| 62 | 6 | public function getLevel(): ?int |
|
| 65 | } |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @return string|null |
||
| 69 | */ |
||
| 70 | 8 | public function getServiceAliasingType(): ?string |
|
| 73 | } |
||
| 74 | } |
||
| 75 |