diff options
author | Satoshi Sahara <sahara.satoshi@gmail.com> | 2021-05-09 13:26:07 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-09 13:26:07 +0900 |
commit | 700ab9fdf1102a367a591bba2bc4a470ca345d2f (patch) | |
tree | 1e118d31fcf905132d7b3dc8aba2e21b4d1c0e5f /lib/plugins/authpdo/_test/mysql.test.php | |
parent | 871895a75d164d6a6389dbba8ae132577a744de4 (diff) | |
parent | 55c2f8c9858c38a70d317809fbfbee6439c10291 (diff) | |
download | dokuwiki-700ab9fdf1102a367a591bba2bc4a470ca345d2f.tar.gz dokuwiki-700ab9fdf1102a367a591bba2bc4a470ca345d2f.zip |
Merge branch 'master' into revisionHandle3
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(); } |