Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DeployMode.php
Go to the documentation of this file.
1 <?php
8 
10 
14 class DeployMode extends Cli
15 {
19  const PARAM_DEPLOY_MODE_DEVELOPER = 'deploy:mode:set developer';
20 
24  const PARAM_DEPLOY_MODE_PRODUCTION = 'deploy:mode:set production';
25 
31  public function setDeployModeToDeveloper()
32  {
34  }
35 
41  public function setDeployModeToProduction()
42  {
44  }
45 }