diff options
Diffstat (limited to 'lib/plugins/authpdo/_test/mysql.test.php')
-rw-r--r-- | lib/plugins/authpdo/_test/mysql.test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/plugins/authpdo/_test/mysql.test.php b/lib/plugins/authpdo/_test/mysql.test.php index 8cd14189b..35a76baf5 100644 --- a/lib/plugins/authpdo/_test/mysql.test.php +++ b/lib/plugins/authpdo/_test/mysql.test.php @@ -15,7 +15,7 @@ class mysql_plugin_authpdo_test extends DokuWikiTest { protected $pass = ''; protected $port = ''; - public function setUp() { + public function setUp() : void { parent::setUp(); $configuration = DOKU_UNITTEST . "{$this->driver}.conf.php"; if(!file_exists($configuration)) { @@ -34,7 +34,7 @@ class mysql_plugin_authpdo_test extends DokuWikiTest { * * it might still be there if something went wrong */ - public function tearDown() { + public function tearDown() : void { parent::tearDown(); $this->dropDatabase(); } |