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 /tests | |
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 'tests')
-rw-r--r-- | tests/lib/TempManagerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/TempManagerTest.php b/tests/lib/TempManagerTest.php index 15b22a7b309..c9e069d9d0d 100644 --- a/tests/lib/TempManagerTest.php +++ b/tests/lib/TempManagerTest.php @@ -17,7 +17,7 @@ class NullLogger extends Log { //disable original constructor } - public function log($level, string $message, array $context = array()) { + public function log(int $level, string $message, array $context = array()) { //noop } } |