* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) */ namespace PrestaShop\Module\AutoUpgrade\TaskRunner\Rollback; use PrestaShop\Module\AutoUpgrade\TaskRunner\AbstractTask; class NoRollbackFound extends AbstractTask { public function run() { $this->logger->info($this->translator->trans('Nothing to restore', array(), 'Modules.Autoupgrade.Admin')); $this->next = 'rollbackComplete'; } }