38 lines
692 B
PHP
Executable File
38 lines
692 B
PHP
Executable File
<?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.");
|
|
}
|
|
}
|