Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/laminas/laminas-diactoros/src/functions/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-diactoros/src/functions/marshal_method_from_sapi.php

<?php

declare(strict_types=1);

namespace Laminas\Diactoros;

/**
 * Retrieve the request method from the SAPI parameters.
 */
function marshalMethodFromSapi(array $server): string
{
    return $server['REQUEST_METHOD'] ?? 'GET';
}