From 634904c6250003edb619d10395b5d1ec5d79a6d0 Mon Sep 17 00:00:00 2001 From: Andreas Hennings Date: Fri, 8 Nov 2024 15:25:24 +0100 Subject: [PATCH] Issue #43: Put array closing bracket on new line. --- src/Cool/CoolRequest.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Cool/CoolRequest.php b/src/Cool/CoolRequest.php index 594b1ad4..631457aa 100644 --- a/src/Cool/CoolRequest.php +++ b/src/Cool/CoolRequest.php @@ -34,8 +34,9 @@ function getDiscovery($server) { 'ssl' => [ 'verify_peer' => !$disable_checks, 'verify_peer_name' => !$disable_checks, - ]]); - $res = file_get_contents($discovery_url, false, $stream_context); + ], + ]); + $res = file_get_contents($discovery_url, FALSE, $stream_context); return $res; }