Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Configurator.php
Go to the documentation of this file.
1 <?php
7 
14 use Magento\Backend\App\Config as BackendConfig;
15 
22 {
28  public function getConfiguration()
29  {
30  return [
31  'preferences' => [
32  CookieManagerInterface::class => \Magento\TestFramework\CookieManager::class,
33  StoreManagerInterface::class => \Magento\TestFramework\Store\StoreManager::class,
34  ScopeConfigInterface::class => \Magento\TestFramework\App\Config::class,
35  \Magento\Framework\App\Config::class => \Magento\TestFramework\App\Config::class,
36  BackendConfig::class => \Magento\TestFramework\Backend\App\Config::class,
37  ReinitableConfig::class => \Magento\TestFramework\App\ReinitableConfig::class,
38  MutableScopeConfig::class => \Magento\TestFramework\App\MutableScopeConfig::class,
39  ]
40  ];
41  }
42 }