Current Path : /home/dev2.destoffenstraat.com/app/Firebear/ImportExport/Model/Migration/ |
Current File : /home/dev2.destoffenstraat.com/app/Firebear/ImportExport/Model/Migration/PostJobInterface.php |
<?php /** * @copyright: Copyright © 2019 Firebear Studio. All rights reserved. * @author : Firebear Studio <fbeardev@gmail.com> */ namespace Firebear\ImportExport\Model\Migration; use Magento\Framework\Exception\LocalizedException; /** * @api */ interface PostJobInterface { /** * Do a post processing after data migration * * @throws LocalizedException */ public function job(); }