mirror of
https://github.com/nextcloud/server.git
synced 2026-02-18 18:28:50 -05:00
adding default to $hint within ctor of DatabaseSetupException
This commit is contained in:
parent
5c7d7549ea
commit
1ef66941a7
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ class DatabaseSetupException extends Exception
|
|||
{
|
||||
private $hint;
|
||||
|
||||
public function __construct($message, $hint, $code = 0, Exception $previous = null) {
|
||||
public function __construct($message, $hint = '', $code = 0, Exception $previous = null) {
|
||||
$this->hint = $hint;
|
||||
parent::__construct($message, $code, $previous);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue