* @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\Attachment\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Attachment\Query\GetAttachment; use PrestaShop\PrestaShop\Core\Domain\Attachment\QueryResult\Attachment; /** * Defines contract for get attachment handler */ interface GetAttachmentHandlerInterface { /** * @param GetAttachment $query * * @return Attachment */ public function handle(GetAttachment $query): Attachment; }