Modification namespace

This commit is contained in:
Dorian Contal 2025-04-23 11:06:32 +02:00
parent db5b7b7575
commit 07fe6226b8
5 changed files with 6 additions and 5 deletions

View File

@ -19,7 +19,7 @@
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"App\\Service\\Import\\": "src/Service/Import/" "Sudalys\\ImportService\\": "src/Service/Import/"
} }
}, },
"minimum-stability": "dev", "minimum-stability": "dev",

View File

@ -1,5 +1,6 @@
<?php <?php
namespace App\Service\Import; namespace Sudalys\ImportService;
use App\Service\Import\CsvValidator; use App\Service\Import\CsvValidator;
use App\Service\Import\Processor\BasicCsvFileProcessor; use App\Service\Import\Processor\BasicCsvFileProcessor;
use App\Service\Import\Processor\MainProcessor; use App\Service\Import\Processor\MainProcessor;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Service\Import; namespace Sudalys\ImportService;
use App\Service\Import\Interfaces\FileProcessorInterface; use App\Service\Import\Interfaces\FileProcessorInterface;
use App\Service\Import\Interfaces\ValidatorInterface; use App\Service\Import\Interfaces\ValidatorInterface;

View File

@ -1,5 +1,5 @@
<?php <?php
namespace App\Service\Import; namespace Sudalys\ImportService;
use App\Service\Import\Interfaces\HeaderSpecificationInterface; use App\Service\Import\Interfaces\HeaderSpecificationInterface;
use App\Service\Import\Result\ValidationResult; use App\Service\Import\Result\ValidationResult;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace App\Service\Import; namespace Sudalys\ImportService;
use PhpOffice\PhpSpreadsheet\IOFactory; use PhpOffice\PhpSpreadsheet\IOFactory;
use PhpOffice\PhpSpreadsheet\Writer\Xlsx; use PhpOffice\PhpSpreadsheet\Writer\Xlsx;