ソースを参照

adding default to $hint within ctor of DatabaseSetupException

tags/v6.0.0alpha2
Thomas Mueller 11年前
コミット
1ef66941a7
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      lib/setup.php

+ 1
- 1
lib/setup.php ファイルの表示

@@ -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);
}

読み込み中…
キャンセル
保存