* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) */ namespace PrestaShop\Module\FacetedSearch\Product; use Context; class SearchFactory { /** * Returns an instance of Search for this context * * @param Context $context * * @return Search */ public function build(Context $context) { return new Search($context); } }