Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
EsConfig.php
Go to the documentation of this file.
1 <?php
7 
12 
13 class EsConfig extends Data implements EsConfigInterface
14 {
21  public function __construct(
22  ReaderInterface $reader,
23  CacheInterface $cache,
24  $cacheId,
25  SerializerInterface $serializer = null
26  ) {
27  parent::__construct($reader, $cache, $cacheId, $serializer);
28  }
29 
33  public function getStemmerInfo()
34  {
35  return $this->get('stemmerInfo');
36  }
37 
41  public function getStopwordsInfo()
42  {
43  return $this->get('stopwordsInfo');
44  }
45 }
__construct(ReaderInterface $reader, CacheInterface $cache, $cacheId, SerializerInterface $serializer=null)
Definition: EsConfig.php:21