Remove some unreachable code.

This commit is contained in:
James Cole
2022-12-30 20:48:48 +01:00
parent 742c84269b
commit 2b9996b844
6 changed files with 8 additions and 15 deletions

View File

@@ -61,8 +61,6 @@ class MonthReportGenerator implements ReportGeneratorInterface
$result = 'Could not render report view.';
throw new FireflyException($result, 0, $e);
}
return $result;
}
/**

View File

@@ -65,8 +65,6 @@ class MultiYearReportGenerator implements ReportGeneratorInterface
$result = sprintf('Could not render report view: %s', $e->getMessage());
throw new FireflyException($result, 0, $e);
}
return $result;
}
/**