Various code cleanup.

This commit is contained in:
James Cole
2025-10-05 12:57:58 +02:00
parent 072212c112
commit 6341743cf9
169 changed files with 482 additions and 305 deletions

View File

@@ -62,6 +62,8 @@ use Illuminate\Support\Facades\Log;
use League\Csv\CannotInsertRecord;
use League\Csv\Exception;
use League\Csv\Writer;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
/**
* Class ExportDataGenerator
@@ -105,7 +107,12 @@ class ExportDataGenerator
}
/**
* @return array
* @throws CannotInsertRecord
* @throws ContainerExceptionInterface
* @throws Exception
* @throws FireflyException
* @throws NotFoundExceptionInterface
*/
public function export(): array
{
@@ -747,9 +754,12 @@ class ExportDataGenerator
}
/**
* @return string
* @throws CannotInsertRecord
* @throws Exception
* @throws FireflyException
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
private function exportTags(): string
{