Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
20 | class Check extends CheckAbstract |
||
21 | { |
||
22 | /** |
||
23 | * @param float $minPerformance The minimum performance ratio, where 1 is equal the computational |
||
24 | * performance of AWS EC2 Micro Instance. For example, a value of 2 means |
||
25 | * at least double the baseline experience, value of 0.5 means at least |
||
26 | * half the performance. Defaults to 0.5 |
||
27 | * |
||
28 | * @throws \InvalidArgumentException |
||
29 | */ |
||
30 | 2 | public function __construct($minPerformance = 0.5) |
|
35 |