1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * App State class for integration tests framework
- */
- namespace Magento\TestFramework\App;
- class State extends \Magento\Framework\App\State
- {
- /**
- * {@inheritdoc}
- */
- public function getAreaCode()
- {
- return $this->_areaCode;
- }
- /**
- * {@inheritdoc}
- */
- public function setAreaCode($code)
- {
- $this->_areaCode = $code;
- $this->_configScope->setCurrentScope($code);
- }
- /**
- * {@inheritdoc}
- */
- public function setMode($mode)
- {
- $this->_appMode = $mode;
- }
- }
|