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 
11 class Config
12 {
18  protected $dictionaryEnabled;
19 
26 
31  public function __construct($dictionaryEnabled = false, $dictionaryFileName = null)
32  {
34  $this->dictionaryFileName = $dictionaryFileName;
35  }
36 
42  public function dictionaryEnabled()
43  {
45  }
46 
52  public function getDictionaryFileName()
53  {
55  }
56 }
__construct($dictionaryEnabled=false, $dictionaryFileName=null)
Definition: Config.php:31