Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/app/code/Makarovsoft/Makarovsoft/Setup/
Upload File :
Current File : /home/dev2.destoffenstraat.com/app/code/Makarovsoft/Makarovsoft/Setup/InstallSchema.php

<?php
/**
 * Copyright © 2015 Makarovsoft. All rights reserved.
 */

namespace Makarovsoft\Makarovsoft\Setup;

use Magento\Framework\Setup\InstallSchemaInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\SchemaSetupInterface;

class InstallSchema implements InstallSchemaInterface
{
    public function install(SchemaSetupInterface $setup, ModuleContextInterface $context)
    {
        $installer = $setup;
        $installer->endSetup();
    }
}