From: Matthias Schmidt Date: Sun, 18 Aug 2019 10:46:19 +0000 (+0200) Subject: Fix code formatting X-Git-Tag: 5.2.0_Beta_2~28^2~2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=cf23b193095b992dbe830dab136756c578dedff7;p=GitHub%2FWoltLab%2FWCF.git Fix code formatting --- diff --git a/wcfsetup/install/files/lib/system/WCF.class.php b/wcfsetup/install/files/lib/system/WCF.class.php index 8248040996..07ad27a9df 100644 --- a/wcfsetup/install/files/lib/system/WCF.class.php +++ b/wcfsetup/install/files/lib/system/WCF.class.php @@ -1200,7 +1200,7 @@ class WCF { if (!empty($nonWritablePaths)) { $maxPaths = 10; - throw new \RuntimeException('The following paths are not writable: ' . implode(',' ,array_slice($nonWritablePaths, 0, $maxPaths)) . (count($nonWritablePaths) > $maxPaths ? ',' . StringUtil::HELLIP : '')); + throw new \RuntimeException('The following paths are not writable: ' . implode(',', array_slice($nonWritablePaths, 0, $maxPaths)) . (count($nonWritablePaths) > $maxPaths ? ',' . StringUtil::HELLIP : '')); } } }