mirror of
https://github.com/nextcloud/server.git
synced 2026-04-05 17:16:55 -04:00
Fix return type for createSpecificUser
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
e163b1bb48
commit
cf2bc22e0f
1 changed files with 1 additions and 2 deletions
|
|
@ -135,9 +135,8 @@ class MySQL extends AbstractDatabase {
|
|||
/**
|
||||
* @param $username
|
||||
* @param IDBConnection $connection
|
||||
* @return array
|
||||
*/
|
||||
private function createSpecificUser($username, $connection) {
|
||||
private function createSpecificUser($username, $connection): void {
|
||||
try {
|
||||
//user already specified in config
|
||||
$oldUser = $this->config->getValue('dbuser', false);
|
||||
|
|
|
|||
Loading…
Reference in a new issue