* read all thresholds for a dataset * * @param int $reportId * @return array */
(int $reportId)
| 46 | * @return array |
| 47 | */ |
| 48 | public function read(int $reportId) { |
| 49 | $thresholds = $this->ThresholdMapper->getThresholdsByReport($reportId); |
| 50 | return $this->VariableService->replaceThresholdsVariables($thresholds); |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * read all thresholds for a dataset without any replaced text variables |
no test coverage detected