]> git.mxchange.org Git - friendica.git/commitdiff
Remove unused parameters in ConfigFileException
authorArt4 <art4@wlabs.de>
Tue, 19 Nov 2024 07:54:17 +0000 (07:54 +0000)
committerArt4 <art4@wlabs.de>
Tue, 19 Nov 2024 07:54:17 +0000 (07:54 +0000)
src/Core/Config/Exception/ConfigFileException.php

index 8b4ff1188fdd818104a6cac9cd893bd7b1163c6d..fea882d18015093da05e063750878449641ddbe7 100644 (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);
        }
 }