![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/generated/code/Mirasvit/Misspell/Service/QueryService/ |
<?php namespace Mirasvit\Misspell\Service\QueryService; /** * Interceptor class for @see \Mirasvit\Misspell\Service\QueryService */ class Interceptor extends \Mirasvit\Misspell\Service\QueryService implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\App\Helper\Context $context, \Magento\Search\Model\QueryFactory $queryFactory, \Magento\Framework\UrlFactory $urlFactory, \Mirasvit\Misspell\Service\TextService $textService, \Magento\Search\Model\ResourceModel\Query\CollectionFactory $queryCollectionFactory, \Magento\Search\Model\SearchEngine $searchEngine, \Magento\CatalogSearch\Model\Advanced\Request\BuilderFactory $requestBuilderFactory, \Magento\Framework\App\ScopeResolverInterface $scopeResolver) { $this->___init(); parent::__construct($context, $queryFactory, $urlFactory, $textService, $queryCollectionFactory, $searchEngine, $requestBuilderFactory, $scopeResolver); } /** * {@inheritdoc} */ public function getQueryText() : string { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getQueryText'); return $pluginInfo ? $this->___callPlugins('getQueryText', func_get_args(), $pluginInfo) : parent::getQueryText(); } /** * {@inheritdoc} */ public function getMisspellText() : string { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMisspellText'); return $pluginInfo ? $this->___callPlugins('getMisspellText', func_get_args(), $pluginInfo) : parent::getMisspellText(); } /** * {@inheritdoc} */ public function getFallbackText() : string { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFallbackText'); return $pluginInfo ? $this->___callPlugins('getFallbackText', func_get_args(), $pluginInfo) : parent::getFallbackText(); } /** * {@inheritdoc} */ public function getOriginalQuery() : string { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getOriginalQuery'); return $pluginInfo ? $this->___callPlugins('getOriginalQuery', func_get_args(), $pluginInfo) : parent::getOriginalQuery(); } /** * {@inheritdoc} */ public function getMisspellUrl(string $from, string $to) : string { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMisspellUrl'); return $pluginInfo ? $this->___callPlugins('getMisspellUrl', func_get_args(), $pluginInfo) : parent::getMisspellUrl($from, $to); } /** * {@inheritdoc} */ public function getFallbackUrl(string $from, string $to) : string { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFallbackUrl'); return $pluginInfo ? $this->___callPlugins('getFallbackUrl', func_get_args(), $pluginInfo) : parent::getFallbackUrl($from, $to); } /** * {@inheritdoc} */ public function fallback(string $query) : ?string { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'fallback'); return $pluginInfo ? $this->___callPlugins('fallback', func_get_args(), $pluginInfo) : parent::fallback($query); } /** * {@inheritdoc} */ public function getNumResults(?string $query = null) : int { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getNumResults'); return $pluginInfo ? $this->___callPlugins('getNumResults', func_get_args(), $pluginInfo) : parent::getNumResults($query); } }