* @copyright 2007-2020 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * Interface ColissimoOtherModuleInterface */ interface ColissimoOtherModuleInterface { /** * ColissimoOtherModuleInterface constructor. * @param ColissimoLogger $logger */ public function __construct(ColissimoLogger $logger); /** * @return bool */ public function migrateCredentials(); /** * @return bool */ public function migrateCarriers(); /** * @return bool */ public function migrateDocuments(); /** * @return bool */ public function migrateConfiguration(); /** * @return bool */ public function migrateData(); }