![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-graph-ql/Controller/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\GraphQl\Controller; /** * Use this interface to implement a processor for each entry of a header in an HTTP GraphQL request. * * @api */ interface HttpHeaderProcessorInterface { /** * Perform processing on a list of headers, iteratively. * * This method should be called even if a header entry is not present on a request * to enforce required headers like "application/json" * * @param string $headerValue * @return void */ public function processHeaderValue(string $headerValue) : void; }