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