Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2021-09-06 13:53:01 +0300
committerGitHub <noreply@github.com>2021-09-06 13:53:01 +0300
commit2994dbe2159807b2efa6acba3d0430bc25af207d (patch)
tree13b4e399b940eaec4975b4385d356445b98bc4f7 /core/Controller
parentdd054b2ee84af84c4da6fb52a6f6b7311dd8bb72 (diff)
Fix codestyle
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'core/Controller')
-rw-r--r--core/Controller/SvgController.php2
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();
}