Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Config.php
Go to the documentation of this file.
1 <?php
7 
14 class Config
15 {
26  protected $defaultValues = [
27  'prefix' => '',
28  'suffix' => '',
29  'startValue' => 1,
30  'step' => 1,
31  'warningValue' => 4294966295,
32  'maxValue' => 4294967295
33  ];
34 
41  public function get($key = null)
42  {
43  if (!array_key_exists($key, $this->defaultValues)) {
44  return null;
45  }
46  return $this->defaultValues[$key];
47  }
48 }