Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 5 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
37 | 7 | public function __construct(array $configuration, $applicationName, $targetName, $subdomain, $map) |
|
38 | { |
||
39 | 7 | parent::__construct($configuration); |
|
40 | |||
41 | 7 | $this->applicationName = $applicationName; |
|
42 | 7 | $this->target = $targetName; |
|
43 | 7 | $this->hostname = $subdomain; |
|
44 | 7 | $this->map = $map; |
|
45 | 7 | } |
|
46 | |||
64 |