Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ValidationState.php
Go to the documentation of this file.
1 <?php
9 
11 {
15  protected $_appMode;
16 
20  public function __construct($appMode)
21  {
22  $this->_appMode = $appMode;
23  }
24 
30  public function isValidationRequired()
31  {
32  return $this->_appMode == \Magento\Framework\App\State::MODE_DEVELOPER;
33  }
34 }