Your IP : 216.73.216.220


Current Path : /var/www/html/dev/tests/setup-integration/framework/Magento/TestFramework/
Upload File :
Current File : /var/www/html/dev/tests/setup-integration/framework/Magento/TestFramework/SetupApplication.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\TestFramework;

/**
 * Encapsulates application installation, initialization and uninstall, add flag to skip database dump.
 *
 * Allow installation and uninstallation.
 */
class SetupApplication extends Application
{
    /**
     * {@inheritdoc}
     */
    protected $dumpDb = false;

    /**
     * @var bool
     */
    protected $canLoadArea = false;

    /**
     * @var bool
     */
    protected $canInstallSequence = false;

    /**
     * {@inheritdoc}
     */
    public function run()
    {
        throw new \Exception("Can't start application.");
    }
}