* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Grid\Search\Factory; use PrestaShop\PrestaShop\Core\Grid\Search\SearchCriteriaInterface; /** * Interface DecoratedSearchCriteriaFactory defines contract for decorated search criteria factory. */ interface DecoratedSearchCriteriaFactory { /** * Create new search criteria. * * @param SearchCriteriaInterface $searchCriteria * * @return SearchCriteriaInterface */ public function createFrom(SearchCriteriaInterface $searchCriteria); }