summaryrefslogtreecommitdiffstats
path: root/apps/dav
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-02-27 10:45:35 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2018-02-27 10:45:35 +0100
commit6994bce951dd9d1d57b6e8c003f9f3cab16f47d0 (patch)
tree124c518cdcf0ace51a33b4090409345dfeaccc35 /apps/dav
parent83eb548d23dff78571b8ba827566ed33cdfa985e (diff)
downloadnextcloud-server-6994bce951dd9d1d57b6e8c003f9f3cab16f47d0.tar.gz
nextcloud-server-6994bce951dd9d1d57b6e8c003f9f3cab16f47d0.zip
Loglevel is an int
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/dav')
-rw-r--r--apps/dav/tests/unit/Connector/Sabre/ExceptionLoggerPluginTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/Connector/Sabre/ExceptionLoggerPluginTest.php b/apps/dav/tests/unit/Connector/Sabre/ExceptionLoggerPluginTest.php
index ba28c39e093..ff928ccede4 100644
--- a/apps/dav/tests/unit/Connector/Sabre/ExceptionLoggerPluginTest.php
+++ b/apps/dav/tests/unit/Connector/Sabre/ExceptionLoggerPluginTest.php
@@ -41,7 +41,7 @@ class TestLogger extends Log {
//disable original constructor
}
- public function log($level, string $message, array $context = array()) {
+ public function log(int $level, string $message, array $context = array()) {
$this->level = $level;
$this->message = $message;
}