apply StyleCI recommendation

This commit is contained in:
El RIDO
2025-11-19 09:57:08 +01:00
parent 3a23117ebf
commit baa79e12e8
4 changed files with 7 additions and 6 deletions
+3 -3
View File
@@ -27,10 +27,10 @@ class TranslatedException extends Exception
* @access public
* @param string|array $messageId message ID or array of message ID and parameters
* @param int $code
* @param ?Throwable $previous
*/
public function __construct(string|array $messageId, int $code = 0, ?Throwable $previous = null) {
public function __construct(string|array $messageId, int $code = 0)
{
$message = is_string($messageId) ? I18n::translate($messageId) : forward_static_call_array('PrivateBin\I18n::translate', $messageId);
parent::__construct($message, $code, $previous);
parent::__construct($message, $code);
}
}