12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Application config file resolver
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\App\Arguments;
- class ValidationState implements \Magento\Framework\Config\ValidationStateInterface
- {
- /**
- * @var string
- */
- protected $_appMode;
- /**
- * @param string $appMode
- */
- public function __construct($appMode)
- {
- $this->_appMode = $appMode;
- }
- /**
- * Retrieve current validation state
- *
- * @return boolean
- */
- public function isValidationRequired()
- {
- return $this->_appMode == \Magento\Framework\App\State::MODE_DEVELOPER;
- }
- }
|