for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PhpCfdi\SatCatalogosPopulate\Importers\Cce;
use PhpCfdi\SatCatalogosPopulate\AbstractXlsOneSheetImporter;
use PhpCfdi\SatCatalogosPopulate\InjectorInterface;
class CceMotivoTraslado extends AbstractXlsOneSheetImporter
{
public function sheetName(): string
return 'c_MotivoTraslado';
}
public function createInjector(string $csvFile): InjectorInterface
return new Injectors\MotivosTraslado($csvFile);