* @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\Product\Image\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Product\Image\Query\GetProductImage; use PrestaShop\PrestaShop\Core\Domain\Product\Image\QueryResult\ProductImage; /** * Handles @see GetProductImage query */ interface GetProductImageHandlerInterface { /** * @param GetProductImage $query * * @return ProductImage */ public function handle(GetProductImage $query): ProductImage; }