Skip to content

Commit

Permalink
style(*): Fix phpstan errors
Browse files Browse the repository at this point in the history
  • Loading branch information
julienloizelet committed Jan 18, 2024
1 parent 5aa731b commit b29079f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Plugin/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -480,9 +480,9 @@ protected function _handleConnectionChanges(
. '<br>url=' . $newConnection['api_url']
. '<br>use curl=' . (!empty($finalUseCurl) ? 'true' : 'false')
. '<br>api key=******'
. '<br>tls cert path=' . ($finalCert ?? "")
. '<br>tls key path=' . ($finalKey ?? "")
. '<br>tls ca cert path=' . ($finalCaCert ?? "")
. '<br>tls cert path=' . $finalCert
. '<br>tls key path=' . $finalKey
. '<br>tls ca cert path=' . $finalCaCert
. '<br>tls verify peer=' . (!empty($finalVerify) ? 'true' : 'false')
. '<br>: ';
throw new BouncerException($message . $e->getMessage());
Expand Down

0 comments on commit b29079f

Please sign in to comment.