Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ProductionModeVisibilityChecker.php
Go to the documentation of this file.
1 <?php
7 
10 
15 {
19  private $state;
20 
24  public function __construct(State $state)
25  {
26  $this->state = $state;
27  }
28 
32  public function isVisible()
33  {
34  return $this->state->getMode() !== State::MODE_PRODUCTION;
35  }
36 }