/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/GraphQl/Exception/InvalidRequestInterface.php
23 строки
448 B
Dmytro Horytskyi
ACP2E-4194: GraphQL Exception in SWAT
08 сен 2025, 19:36
08 сен 2025, 19:36
6dd6608
Код
Авторство
О чём код?
<?php /** * Copyright 2025 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\GraphQl\Exception; use Throwable; /** * Interface for providing response status code when invalid GraphQL request is detected. */ interface InvalidRequestInterface extends Throwable { /** * HTTP status code to be returned with the response. * * @return int */ public function getStatusCode(): int; }