12345678910111213141516171819202122232425262728293031323334353637 |
- <?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.");
- }
- }
|