![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/app/code/Mageplaza/Core/Setup/ |
<?php /** * Mageplaza_Core extension * NOTICE OF LICENSE * * This source file is subject to the Mageplaza License * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://www.mageplaza.com/LICENSE.txt * * @category Mageplaza * @package Mageplaza_Core * @copyright Copyright (c) 2016 * @license https://www.mageplaza.com/LICENSE.txt Mageplaza License */ namespace Mageplaza\Core\Setup; class InstallSchema implements \Magento\Framework\Setup\InstallSchemaInterface { /** * install tables * * @param \Magento\Framework\Setup\SchemaSetupInterface $setup * @param \Magento\Framework\Setup\ModuleContextInterface $context * @return void * @SuppressWarnings(PHPMD.ExcessiveMethodLength) */ public function install(\Magento\Framework\Setup\SchemaSetupInterface $setup, \Magento\Framework\Setup\ModuleContextInterface $context) { $installer = $setup; $installer->startSetup(); $installer->endSetup(); } }