diff --git a/app/Http/Controllers/Staff/ReportDownloadController.php b/app/Http/Controllers/Staff/ReportDownloadController.php index 535b6bc..00f1614 100644 --- a/app/Http/Controllers/Staff/ReportDownloadController.php +++ b/app/Http/Controllers/Staff/ReportDownloadController.php @@ -7,7 +7,7 @@ use App\Http\Controllers\Controller; use App\Models\StudyReport; use App\Services\Export\Exporters; -use App\Services\ReportStorage; +use App\Services\Report\ReportStorage; final class ReportDownloadController extends Controller { diff --git a/app/Models/StudyReport.php b/app/Models/StudyReport.php index 26e7b6a..eae98cb 100644 --- a/app/Models/StudyReport.php +++ b/app/Models/StudyReport.php @@ -4,7 +4,7 @@ use App\Domain\Report\ExportFormat; use App\Domain\Report\ReportStatus; -use App\Services\ReportStorage; +use App\Services\Report\ReportStorage; use Illuminate\Database\Eloquent\Concerns\HasTimestamps; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Support\Facades\Storage; diff --git a/app/Services/Export/Formats/HtmlExport.php b/app/Services/Export/Formats/HtmlExport.php index 76d7577..b822d1c 100644 --- a/app/Services/Export/Formats/HtmlExport.php +++ b/app/Services/Export/Formats/HtmlExport.php @@ -4,7 +4,7 @@ use App\Domain\Report\ExportFormat; use App\Services\Export\ExportDocumentBase; -use App\Services\ReportStorage; +use App\Services\Report\ReportStorage; use Illuminate\Support\Facades\Blade; final class HtmlExport extends ExportDocumentBase diff --git a/app/Services/Export/Formats/PdfExport.php b/app/Services/Export/Formats/PdfExport.php index 66b44c7..fc6c8ed 100644 --- a/app/Services/Export/Formats/PdfExport.php +++ b/app/Services/Export/Formats/PdfExport.php @@ -4,7 +4,7 @@ use App\Domain\Report\ExportFormat; use App\Services\Export\ExportDocumentBase; -use App\Services\ReportStorage; +use App\Services\Report\ReportStorage; use Barryvdh\DomPDF\Facade\Pdf; final class PdfExport extends ExportDocumentBase diff --git a/app/Services/Export/Formats/Word2003Export.php b/app/Services/Export/Formats/Word2003Export.php index 5edc850..ab19a52 100644 --- a/app/Services/Export/Formats/Word2003Export.php +++ b/app/Services/Export/Formats/Word2003Export.php @@ -4,7 +4,7 @@ use App\Domain\Report\ExportFormat; use App\Services\Export\ExportDocumentBase; -use App\Services\ReportStorage; +use App\Services\Report\ReportStorage; use CreateDocx; final class Word2003Export extends ExportDocumentBase diff --git a/app/Services/Export/Formats/Word2007Export.php b/app/Services/Export/Formats/Word2007Export.php index 887492b..c52a3e1 100644 --- a/app/Services/Export/Formats/Word2007Export.php +++ b/app/Services/Export/Formats/Word2007Export.php @@ -4,7 +4,7 @@ use App\Domain\Report\ExportFormat; use App\Services\Export\ExportDocumentBase; -use App\Services\ReportStorage; +use App\Services\Report\ReportStorage; use CreateDocx; use Illuminate\Support\Facades\Blade; diff --git a/app/Services/ReportStorage.php b/app/Services/Report/ReportStorage.php similarity index 97% rename from app/Services/ReportStorage.php rename to app/Services/Report/ReportStorage.php index 215f214..8881618 100644 --- a/app/Services/ReportStorage.php +++ b/app/Services/Report/ReportStorage.php @@ -1,6 +1,6 @@