Fix code-style
authorCyperghost <olaf_schmitz_1@t-online.de>
Thu, 25 Apr 2024 10:22:53 +0000 (12:22 +0200)
committerCyperghost <olaf_schmitz_1@t-online.de>
Thu, 25 Apr 2024 10:22:53 +0000 (12:22 +0200)
wcfsetup/install/files/lib/system/user/authentication/oauth/Failure.class.php
wcfsetup/install/files/lib/system/user/authentication/oauth/Success.class.php
wcfsetup/install/files/lib/system/user/authentication/oauth/twitter/Success.class.php

index 0aa7686718ea8223f3f9b3727936b93d46a914a2..9ddd03bef5f5f9c8d01257cafced3cbdc1e19f88 100644 (file)
@@ -12,7 +12,8 @@ namespace wcf\system\user\authentication\oauth;
  */
 class Failure
 {
-    public function __construct(public readonly string $error)
-    {
+    public function __construct(
+        public readonly string $error
+    ) {
     }
 }
index bd226c6bf2733dc6685272dc94b70f447aa32e28..e8fcdae22e1540f2826a9ab1c65aec71fecae47d 100644 (file)
@@ -12,7 +12,9 @@ namespace wcf\system\user\authentication\oauth;
  */
 class Success
 {
-    public function __construct(public readonly string $code, public readonly string $state = '')
-    {
+    public function __construct(
+        public readonly string $code,
+        public readonly string $state = ''
+    ) {
     }
 }
index bde4dc2642ed95275cef55e5cced2e3622d30b7c..8c3ed02d14819e9c7de83bf99a9382dddbf147d0 100644 (file)
@@ -14,10 +14,8 @@ use wcf\system\user\authentication\oauth\Success as BaseSuccess;
  */
 final class Success extends BaseSuccess
 {
-    public function __construct(
-        string $oauth_token,
-        string $oauth_verifier,
-    ) {
+    public function __construct(string $oauth_token, string $oauth_verifier)
+    {
         parent::__construct($oauth_token, $oauth_verifier);
     }
 }