Passed
Push — master ( 10c327...3c8cd4 )
by Carlos C
12:47 queued 14s
created

Cce20Catalogs::createImporters()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 13
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 12
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 11
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 13
ccs 12
cts 12
cp 1
crap 1
rs 9.9
1
<?php
2
3
declare(strict_types=1);
4
5
namespace PhpCfdi\SatCatalogosPopulate\Importers;
6
7
use PhpCfdi\SatCatalogosPopulate\Database\Repository;
8
use PhpCfdi\SatCatalogosPopulate\ImporterInterface;
9
use Psr\Log\LoggerInterface;
10
use RuntimeException;
11
12
class Cce20Catalogs implements ImporterInterface
13
{
14
    /**
15
     * @param string $source Folder where all files exist
16
     */
17 1
    public function import(string $source, Repository $repository, LoggerInterface $logger): void
18
    {
19 1
        $importers = $this->createImporters();
20 1
        foreach ($importers as $file => $importer) {
21 1
            $sourceFile = $source . '/' . $file;
22 1
            if (! file_exists($sourceFile) || is_dir($sourceFile) || ! is_readable($sourceFile)) {
23
                throw new RuntimeException("No se encontró el archivo $sourceFile");
24
            }
25 1
            $importer->import($sourceFile, $repository, $logger);
26
        }
27
    }
28
29
    /** @return array<string, ImporterInterface> */
30 2
    public function createImporters(): array
31
    {
32 2
        return [
33 2
            'c_ClavePedimento20.xls' => new Cce20\CceClavePedimento(),
34 2
            'c_Colonia20.xls' => new Cce20\CceColonia(),
35 2
            'C_Estado20.xls' => new Cce20\CceEstado(),
36 2
            'c_FraccionArancelaria_cce20_20221212.xls' => new Cce20\CceFraccionArancelaria(),
37 2
            'c_INCOTERM20.xls' => new Cce20\CceIncoterm(),
38 2
            'c_Localidad20.xls' => new Cce20\CceLocalidad(),
39 2
            'c_MotivoTraslado20.xls' => new Cce20\CceMotivoTraslado(),
40 2
            'c_Municipio20.xls' => new Cce20\CceMunicipio(),
41 2
            'c_TipoOperacion20.xls' => new Cce20\CceTipoOperacion(),
42 2
            'c_UnidadAduana20.xls' => new Cce20\CceUnidadAduana(),
43 2
        ];
44
    }
45
}
46