Modification namespace
This commit is contained in:
parent
db5b7b7575
commit
07fe6226b8
|
@ -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",
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue