Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Environment.php
Go to the documentation of this file.
1 <?php
7 
9 
13 class Environment implements ArrayInterface
14 {
15  const ENVIRONMENT_PRODUCTION = 'production';
16  const ENVIRONMENT_SANDBOX = 'sandbox';
17 
23  public function toOptionArray()
24  {
25  return [
26  [
27  'value' => self::ENVIRONMENT_SANDBOX,
28  'label' => 'Sandbox',
29  ],
30  [
32  'label' => 'Production'
33  ]
34  ];
35  }
36 }