diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-02-26 22:34:13 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-02-27 10:41:46 +0100 |
commit | 4077f16aecafbc5d07a43f458aeb67d3edf1213d (patch) | |
tree | 2dfb5c937cb32fbee3eb785d792d876e6d52c761 /tests/lib/TempManagerTest.php | |
parent | cd3eb80ef4e9613e16430cb4c53332ac3cdae97a (diff) | |
download | nextcloud-server-4077f16aecafbc5d07a43f458aeb67d3edf1213d.tar.gz nextcloud-server-4077f16aecafbc5d07a43f458aeb67d3edf1213d.zip |
Make ILogger strict
* Make implementations strict
* Add scalar typehints
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests/lib/TempManagerTest.php')
-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 23d171180fd..15b22a7b309 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, $message, array $context = array()) { + public function log($level, string $message, array $context = array()) { //noop } } |