. */ namespace SP\Services\Import; /** * Interface ImportInterface * * @package Import */ interface ImportInterface { /** * Iniciar la importación * * @return ImportInterface */ public function doImport(); /** * Devolver el contador de objetos importados * * @return int */ public function getCounter(); }