* @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\Domain\Manufacturer\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Manufacturer\Query\GetManufacturerForViewing; use PrestaShop\PrestaShop\Core\Domain\Manufacturer\QueryResult\ViewableManufacturer; /** * Interface for service that handles gettting manufacturer for viewing query */ interface GetManufacturerForViewingHandlerInterface { /** * @param GetManufacturerForViewing $query * * @return ViewableManufacturer */ public function handle(GetManufacturerForViewing $query); }