Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | trait SumAction |
||
21 | { |
||
22 | use AbstractInjectable; |
||
23 | use AbstractQuery; |
||
24 | use AbstractRestResponse; |
||
25 | |||
26 | /** |
||
27 | * Calculates the sum of a column. |
||
28 | * |
||
29 | * @return ResponseInterface The REST response with a status of true. |
||
30 | * @throws Exception |
||
31 | */ |
||
32 | public function sumAction(): ResponseInterface |
||
38 |