diff options
author | Andreas Gohr <andi@splitbrain.org> | 2021-02-04 20:41:37 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2021-02-04 20:58:17 +0100 |
commit | 1c33cec37215d0c964cf961bdbc49ae7db3657e6 (patch) | |
tree | 70e53931ac1f4700112f485c055e7439b91cd07a /_test/tests/inc/cache_use.test.php | |
parent | bd9dab32dbf9956a33ffe2b84def740c0db664a4 (diff) | |
download | dokuwiki-1c33cec37215d0c964cf961bdbc49ae7db3657e6.tar.gz dokuwiki-1c33cec37215d0c964cf961bdbc49ae7db3657e6.zip |
add needed type hints for phpunit8
This will break a lot of plugin tests, but can't be avoided
Diffstat (limited to '_test/tests/inc/cache_use.test.php')
-rw-r--r-- | _test/tests/inc/cache_use.test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_test/tests/inc/cache_use.test.php b/_test/tests/inc/cache_use.test.php index 3a1028d13..76e81a546 100644 --- a/_test/tests/inc/cache_use.test.php +++ b/_test/tests/inc/cache_use.test.php @@ -13,7 +13,7 @@ class cache_use_test extends DokuWikiTest { /** @var CacheRenderer $cache */ private $cache; - function setUp() { + function setUp() : void { global $ID, $conf; parent::setUp(); |