| Total Complexity | 3 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 10 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class ReportingCloud extends AbstractReportingCloud |
||
| 23 | { |
||
| 24 | use BuildTrait; |
||
| 25 | use DeleteTrait; |
||
| 26 | use GetTrait; |
||
| 27 | use PostTrait; |
||
| 28 | use PutTrait; |
||
| 29 | use UtilityTrait; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Constructor Method |
||
| 33 | * ----------------------------------------------------------------------------------------------------------------- |
||
| 34 | */ |
||
| 35 | |||
| 36 | /** |
||
| 37 | * ReportingCloud constructor |
||
| 38 | * |
||
| 39 | * @param array $options |
||
| 40 | */ |
||
| 41 | 132 | public function __construct(array $options = []) |
|
| 61 |