From: Marcel Werk Date: Wed, 27 Oct 2021 16:10:12 +0000 (+0200) Subject: Improved code style X-Git-Tag: 5.5.0_Alpha_1~345^2^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=cdc6c79908bb6fa4d8323bdba895da9ac124b1fd;p=GitHub%2FWoltLab%2FWCF.git Improved code style --- diff --git a/wcfsetup/install/files/lib/action/PaypalCallbackAction.class.php b/wcfsetup/install/files/lib/action/PaypalCallbackAction.class.php index f972bc5ea4..717b188c3b 100644 --- a/wcfsetup/install/files/lib/action/PaypalCallbackAction.class.php +++ b/wcfsetup/install/files/lib/action/PaypalCallbackAction.class.php @@ -43,7 +43,12 @@ class PaypalCallbackAction extends AbstractAction $request = new Request('POST', $url, [ 'Content-Type' => 'application/x-www-form-urlencoded', - ], \http_build_query(\array_merge(['cmd' => '_notify-validate'], $_POST), '', '&', \PHP_QUERY_RFC1738)); + ], \http_build_query( + \array_merge(['cmd' => '_notify-validate'], $_POST), + '', + '&', + \PHP_QUERY_RFC1738 + )); $client = HttpFactory::getDefaultClient(); $response = $client->send($request); $content = (string)$response->getBody();