Fix PHP codestyle
authorTim Düsterhus <duesterhus@woltlab.com>
Fri, 14 Apr 2023 12:56:56 +0000 (14:56 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Fri, 14 Apr 2023 12:56:56 +0000 (14:56 +0200)
wcfsetup/install/files/acp/update_com.woltlab.wcf_6.0_styleVariables.php
wcfsetup/install/files/lib/action/TAJAXException.class.php
wcfsetup/install/files/lib/http/middleware/Xsrf.class.php
wcfsetup/install/files/lib/system/html/output/node/HtmlOutputNodePre.class.php
wcfsetup/install/files/lib/system/html/output/node/HtmlOutputNodeWoltlabMetacode.class.php
wcfsetup/install/files/lib/system/html/output/node/HtmlOutputUnfurlUrlNode.class.php
wcfsetup/install/files/lib/system/request/RequestHandler.class.php

index dc4dbc92a61a462d24c8ce863b692a4e62906260..3fde2befd19e6ebf3791362d7121b7552a778e21 100644 (file)
@@ -3,10 +3,10 @@
 use wcf\system\WCF;
 
 $styleVariables = [
-    ['messageSidebarOrientation', 'left', NULL],
-    ['pageLogoWidth', '281', NULL],
-    ['pageLogoHeight', '40', NULL],
-    ['useFluidLayout', '1', NULL],
+    ['messageSidebarOrientation', 'left', null],
+    ['pageLogoWidth', '281', null],
+    ['pageLogoHeight', '40', null],
+    ['useFluidLayout', '1', null],
     ['wcfButtonBackground', 'rgba(207, 216, 220, 1)', 'rgba(47, 57, 76, 1)'],
     ['wcfButtonBackgroundActive', 'rgba(120, 144, 156, 1)', 'rgba(37, 45, 60, 1)'],
     ['wcfButtonDisabledBackground', 'rgba(223, 223, 223, 1)', 'rgba(38, 39, 42, 1)'],
@@ -44,13 +44,13 @@ $styleVariables = [
     ['wcfEditorButtonTextActive', 'rgba(255, 255, 255, 1)', 'rgba(230, 231, 234, 1)'],
     ['wcfEditorButtonTextDisabled', 'rgba(165, 165, 165, 1)', 'rgba(118, 125, 137, 1)'],
     ['wcfEditorTableBorder', 'rgba(221, 221, 221, 1)', 'rgba(221, 221, 221, 1)'],
-    ['wcfFontFamilyFallback', 'system', NULL],
-    ['wcfFontLineHeight', '1.48', NULL],
-    ['wcfFontSizeDefault', '15px', NULL],
-    ['wcfFontSizeHeadline', '18px', NULL],
-    ['wcfFontSizeSection', '23px', NULL],
-    ['wcfFontSizeSmall', '12px', NULL],
-    ['wcfFontSizeTitle', '28px', NULL],
+    ['wcfFontFamilyFallback', 'system', null],
+    ['wcfFontLineHeight', '1.48', null],
+    ['wcfFontSizeDefault', '15px', null],
+    ['wcfFontSizeHeadline', '18px', null],
+    ['wcfFontSizeSection', '23px', null],
+    ['wcfFontSizeSmall', '12px', null],
+    ['wcfFontSizeTitle', '28px', null],
     ['wcfFooterBackground', 'rgba(58, 109, 156, 1)', 'rgba(30, 39, 52, 1)'],
     ['wcfFooterBoxBackground', 'rgba(236, 239, 241, 1)', 'rgba(26, 34, 45, 1)'],
     ['wcfFooterBoxHeadlineLink', 'rgba(58, 58, 61, 1)', 'rgba(209, 210, 211, 1)'],
@@ -100,9 +100,9 @@ $styleVariables = [
     ['wcfInputTextActive', 'rgba(58, 58, 61, 1)', 'rgba(209, 210, 211, 1)'],
     ['wcfInputPlaceholder', 'rgba(169, 169, 169, 1)', 'rgba(122, 123, 125, 1)'],
     ['wcfInputPlaceholderActive', 'rgba(204, 204, 204, 1)', 'rgba(122, 123, 125, 1)'],
-    ['wcfLayoutFixedWidth', '1200px', NULL],
-    ['wcfLayoutMaxWidth', '1400px', NULL],
-    ['wcfLayoutMinWidth', '1000px', NULL],
+    ['wcfLayoutFixedWidth', '1200px', null],
+    ['wcfLayoutMaxWidth', '1400px', null],
+    ['wcfLayoutMinWidth', '1000px', null],
     ['wcfNavigationBackground', 'rgba(236, 239, 241, 1)', 'rgba(26, 34, 45, 1)'],
     ['wcfNavigationLink', 'rgba(58, 58, 61, 1)', 'rgba(179, 182, 185, 1)'],
     ['wcfNavigationLinkActive', 'rgba(58, 58, 61, 1)', 'rgba(205, 207, 208, 1)'],
@@ -165,7 +165,7 @@ $sql = "INSERT INTO             wcf1_style_variable
 $statement = WCF::getDB()->prepare($sql);
 
 foreach ($styleVariables as $data) {
-    list($variableName, $defaultValue, $defaultValueDarkMode) = $data;
+    [$variableName, $defaultValue, $defaultValueDarkMode] = $data;
 
     $statement->execute([
         $variableName,
index edefd92ce4c6061d33083f60801a887230f2ad69..71073e5ede154c01f5a9cb1edbb5853644ea7dbd 100644 (file)
@@ -10,7 +10,6 @@ use wcf\system\exception\PermissionDeniedException;
 use wcf\system\exception\SystemException;
 use wcf\system\exception\UserInputException;
 use wcf\system\exception\ValidateActionException;
-use wcf\system\WCF;
 
 /**
  * Default implementation for the AJAXException throw method.
index dadafff8e6fb327d4dec14b17a5a7311a4f1be82..d14a144a4158003779070329db65293b25401d36 100644 (file)
@@ -8,7 +8,6 @@ use Psr\Http\Server\MiddlewareInterface;
 use Psr\Http\Server\RequestHandlerInterface;
 use wcf\http\attribute\DisableXsrfCheck;
 use wcf\http\error\XsrfValidationFailedHandler;
-use wcf\system\exception\InvalidSecurityTokenException;
 use wcf\system\request\Request;
 use wcf\system\request\RequestHandler;
 use wcf\system\WCF;
index 6b342fd04f1bfeaebbef49ed32fa98997a12b020..e5d24b20609f4bd9f68184a4557992e5ad152e31 100644 (file)
@@ -237,7 +237,8 @@ class HtmlOutputNodePre extends AbstractHtmlOutputNode
 
         if (
             \str_contains($content, '{/if}')
-            && (\str_contains($content, '<div')
+            && (
+                \str_contains($content, '<div')
                 || \str_contains($content, '<span')
             )
         ) {
index 25af88f2da58f4fd1795038c0bce2cfba44c2b9e..4a2b416a21352969d1b5a57d87929bb64bec936d 100644 (file)
@@ -4,7 +4,6 @@ namespace wcf\system\html\output\node;
 
 use wcf\system\bbcode\HtmlBBCodeParser;
 use wcf\system\html\node\AbstractHtmlNodeProcessor;
-use wcf\util\StringUtil;
 
 /**
  * Processes bbcodes represented by `<woltlab-metacode>`.
index 4917f3b29aba7e665b86cf0aeafb70627cdc3715..dfd82dbc9d63c2a639716958c451e94e503f97e1 100644 (file)
@@ -7,7 +7,6 @@ use wcf\system\html\node\AbstractHtmlNodeProcessor;
 use wcf\system\html\node\HtmlNodeUnfurlLink;
 use wcf\system\html\output\HtmlOutputProcessor;
 use wcf\system\message\embedded\object\MessageEmbeddedObjectManager;
-use wcf\util\StringUtil;
 
 /**
  * Node class to replace unfurled urls in the output.
index 0b511b0c230890fe1d43b93b427d5a69e9d70007..55cd8f1fc920e8cfac6755d6923fdb8897f10e32 100644 (file)
@@ -10,7 +10,6 @@ use Laminas\HttpHandlerRunner\Emitter\SapiEmitter;
 use Psr\Http\Message\RequestInterface;
 use Psr\Http\Message\ResponseInterface;
 use wcf\http\error\NotFoundHandler;
-use wcf\http\error\XsrfValidationFailedHandler;
 use wcf\http\LegacyPlaceholderResponse;
 use wcf\http\middleware\AddAcpSecurityHeaders;
 use wcf\http\middleware\CheckForEnterpriseNonOwnerAccess;