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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-14 17:06:46 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-14 17:06:46 +0300
commit7f32cfe6570d112fb748c9a97590e2b9d6e8aafb (patch)
tree931a9c6eaca5fafcd280f9fe7fa6c268631f60f2 /lib/Support
parent2107b0f6ffe97ac40152207f7f90cc2a94ce46d1 (diff)
Update to nextcloud coding standard v0.3.0
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/HostNameFactory.php1
-rw-r--r--lib/Support/PerformanceLogger.php5
-rw-r--r--lib/Support/PerformanceLoggerTask.php5
3 files changed, 6 insertions, 5 deletions
diff --git a/lib/Support/HostNameFactory.php b/lib/Support/HostNameFactory.php
index aba0c477c..4107f58b4 100644
--- a/lib/Support/HostNameFactory.php
+++ b/lib/Support/HostNameFactory.php
@@ -44,5 +44,4 @@ class HostNameFactory {
public function getHostName(): string {
return Util::getServerHostName();
}
-
}
diff --git a/lib/Support/PerformanceLogger.php b/lib/Support/PerformanceLogger.php
index 7043fbb36..56061011f 100644
--- a/lib/Support/PerformanceLogger.php
+++ b/lib/Support/PerformanceLogger.php
@@ -1,4 +1,6 @@
-<?php declare(strict_types=1);
+<?php
+
+declare(strict_types=1);
/**
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
@@ -47,5 +49,4 @@ class PerformanceLogger {
$this->logger
);
}
-
}
diff --git a/lib/Support/PerformanceLoggerTask.php b/lib/Support/PerformanceLoggerTask.php
index 1452f2754..db4866b61 100644
--- a/lib/Support/PerformanceLoggerTask.php
+++ b/lib/Support/PerformanceLoggerTask.php
@@ -1,4 +1,6 @@
-<?php declare(strict_types=1);
+<?php
+
+declare(strict_types=1);
/**
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
@@ -68,5 +70,4 @@ class PerformanceLoggerTask {
$this->logger->debug($this->task . " took ${passed}s");
}
-
}