refactor
This commit is contained in:
parent
a9d2b34e6f
commit
ab6ea64e4d
@ -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
|
||||
{
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services;
|
||||
namespace App\Services\Report;
|
||||
|
||||
use App\Models\Study;
|
||||
use Illuminate\Support\Facades\Storage;
|
Loading…
Reference in New Issue
Block a user