diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-02-27 10:45:35 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-02-27 10:45:35 +0100 |
commit | 6994bce951dd9d1d57b6e8c003f9f3cab16f47d0 (patch) | |
tree | 124c518cdcf0ace51a33b4090409345dfeaccc35 /apps/dav | |
parent | 83eb548d23dff78571b8ba827566ed33cdfa985e (diff) | |
download | nextcloud-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.php | 2 |
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; } |