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
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-09-07 09:36:44 +0300
commitc29480793ce2167729b4569bcf109e99b6687d34 (patch)
tree7757c46c04df67a7c154c9aa69a8cf474ec081e9 /core/Controller
parent39b15269c99a2b6d123ddb75b9c00c9356720dfd (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 3aa9e73c859..1070047c1cd 100644
--- a/core/Controller/SvgController.php
+++ b/core/Controller/SvgController.php
@@ -119,7 +119,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();
}