diff --git a/api/autoload.php b/api/autoload.php index 33ac8300..88c675b6 100644 --- a/api/autoload.php +++ b/api/autoload.php @@ -28,7 +28,7 @@ $applicationContext = $builder->build(); // Fix for getallheaders() on PHP-FPM and nginx if (!function_exists('getallheaders')) { function getallheaders() { - $headers = []; + $headers = array(); foreach ($_SERVER as $name => $value) { if (substr($name, 0, 5) == 'HTTP_') { $headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value;