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 CceTipoOperacion extends AbstractXlsOneSheetImporter
{
public function sheetName(): string
return 'c_TipoOperacion';
}
public function createInjector(string $csvFile): InjectorInterface
return new Injectors\TiposOperacion($csvFile);