From b29079fe421ac72ac1c56593c2ace0ec3d50f668 Mon Sep 17 00:00:00 2001 From: Julien Loizelet Date: Thu, 18 Jan 2024 13:22:55 +0900 Subject: [PATCH] style(*): Fix phpstan errors --- Plugin/Config.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Plugin/Config.php b/Plugin/Config.php index fe33975..119f0f8 100644 --- a/Plugin/Config.php +++ b/Plugin/Config.php @@ -480,9 +480,9 @@ protected function _handleConnectionChanges( . '
url=' . $newConnection['api_url'] . '
use curl=' . (!empty($finalUseCurl) ? 'true' : 'false') . '
api key=******' - . '
tls cert path=' . ($finalCert ?? "") - . '
tls key path=' . ($finalKey ?? "") - . '
tls ca cert path=' . ($finalCaCert ?? "") + . '
tls cert path=' . $finalCert + . '
tls key path=' . $finalKey + . '
tls ca cert path=' . $finalCaCert . '
tls verify peer=' . (!empty($finalVerify) ? 'true' : 'false') . '
: '; throw new BouncerException($message . $e->getMessage());