Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | 15 | public function __construct(HealthAggregatorInterface $healthAggregator, array $indicators = array()) |
|
32 | { |
||
33 | 15 | assert(!is_null($healthAggregator), 'HealthAggregator must not be null'); |
|
34 | |||
35 | 15 | $this->indicators = $indicators; |
|
36 | 15 | $this->healthAggregator = $healthAggregator; |
|
37 | 15 | } |
|
38 | |||
63 |