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