mirror of
https://github.com/friendica/friendica
synced 2024-12-23 04:40:15 +00:00
Remove unused parameters in ConfigFileException
This commit is contained in:
parent
58e447f7bb
commit
0f785e8bd0
1 changed files with 2 additions and 2 deletions
|
@ -11,8 +11,8 @@ use Throwable;
|
||||||
|
|
||||||
class ConfigFileException extends \RuntimeException
|
class ConfigFileException extends \RuntimeException
|
||||||
{
|
{
|
||||||
public function __construct($message = "", $code = 0, Throwable $previous = null)
|
public function __construct($message = "")
|
||||||
{
|
{
|
||||||
parent::__construct($message, 500, $previous);
|
parent::__construct($message, 500);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue