Remove unused parameters in ConfigFileException

This commit is contained in:
Art4 2024-11-19 07:54:17 +00:00
parent 58e447f7bb
commit 0f785e8bd0

View file

@ -11,8 +11,8 @@ use Throwable;
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);
}
}