summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-07-02 17:40:39 +0200
committerGitHub <noreply@github.com>2018-07-02 17:40:39 +0200
commitaa64584d679d0d5836ce2e08197d58fe2f8f4a86 (patch)
treee5d86c38b20e5bb6b8e4b9ba80eb8e30aee1e6b9
parent48b7499fa457272a1ac74dd38d7019b8c62ae6f3 (diff)
parentf3093b24016f42843d92a1a59cf955692bac57d1 (diff)
downloadnextcloud-server-aa64584d679d0d5836ce2e08197d58fe2f8f4a86.tar.gz
nextcloud-server-aa64584d679d0d5836ce2e08197d58fe2f8f4a86.zip
Merge pull request #10080 from nextcloud/bugfix/noid/fix-phan-warning
Fix undeclared method warning in phan
-rw-r--r--lib/private/Log/Systemdlog.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Log/Systemdlog.php b/lib/private/Log/Systemdlog.php
index 40e9c12386e..2d5759311d4 100644
--- a/lib/private/Log/Systemdlog.php
+++ b/lib/private/Log/Systemdlog.php
@@ -68,6 +68,7 @@ class Systemdlog implements IWriter {
* @param string $app
* @param string $message
* @param int $level
+ * @suppress PhanUndeclaredMethod
*/
public function write(string $app, $message, int $level) {
$journal_level = $this->levels[$level];