2f8784102643c8a8cfce802cf11ef85957b93cf1
[GitHub/WoltLab/WCF.git] /
1 <?php
2
3 /**
4 * @see https://github.com/laminas/laminas-diactoros for the canonical source repository
5 * @copyright https://github.com/laminas/laminas-diactoros/blob/master/COPYRIGHT.md
6 * @license https://github.com/laminas/laminas-diactoros/blob/master/LICENSE.md New BSD License
7 */
8
9 declare(strict_types=1);
10
11 namespace Laminas\Diactoros;
12
13 /**
14 * Retrieve the request method from the SAPI parameters.
15 */
16 function marshalMethodFromSapi(array $server) : string
17 {
18 return $server['REQUEST_METHOD'] ?? 'GET';
19 }