| Current Path : /home/rtorresani/www/vendor/magento/module-graph-ql/Controller/ |
| Current File : //home/rtorresani/www/vendor/magento/module-graph-ql/Controller/HttpRequestValidatorInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\GraphQl\Controller;
use Magento\Framework\App\HttpRequestInterface;
use Magento\Framework\GraphQl\Exception\GraphQlInputException;
/**
* Use this interface to implement a validator for a Graphql HTTP requests
*
* @api
*/
interface HttpRequestValidatorInterface
{
/**
* Perform validation of request
*
* @param HttpRequestInterface $request
* @return void
* @throws GraphQlInputException
*/
public function validate(HttpRequestInterface $request) : void;
}