diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2021-09-06 10:53:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-06 10:53:01 +0000 |
commit | 2994dbe2159807b2efa6acba3d0430bc25af207d (patch) | |
tree | 13b4e399b940eaec4975b4385d356445b98bc4f7 /core/Controller | |
parent | dd054b2ee84af84c4da6fb52a6f6b7311dd8bb72 (diff) | |
download | nextcloud-server-2994dbe2159807b2efa6acba3d0430bc25af207d.tar.gz nextcloud-server-2994dbe2159807b2efa6acba3d0430bc25af207d.zip |
Fix codestyle
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'core/Controller')
-rw-r--r-- | core/Controller/SvgController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Controller/SvgController.php b/core/Controller/SvgController.php index 5f5ffd4ceb0..17f16dd48e6 100644 --- a/core/Controller/SvgController.php +++ b/core/Controller/SvgController.php @@ -118,7 +118,7 @@ class SvgController extends Controller { * @return DataDisplayResponse|NotFoundResponse */ private function getSvg(string $path, string $color, string $fileName) { - if(!Filesystem::isValidPath($path)) { + if (!Filesystem::isValidPath($path)) { return new NotFoundResponse(); } |