1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 17:24:40 +01:00

Small psalm fix

This commit is contained in:
Daniil Gentili 2024-06-15 16:01:33 +02:00
parent aea8a3ed06
commit 238f49b259
2 changed files with 3 additions and 3 deletions

2
docs

@ -1 +1 @@
Subproject commit bcc7116bd7b61341a5c42216c730c95e3b9002f4
Subproject commit 6aadef21dbfd45e8d088004379f927c4aa71abf3

View File

@ -213,7 +213,7 @@ class RPCErrorException extends \Exception
string $rpc,
int $code,
string $caller,
?Exception $previous = null
?\Exception $previous = null
): self {
// Start match
match ($rpc) {
@ -740,7 +740,7 @@ class RPCErrorException extends \Exception
public readonly string $description,
int $code,
private readonly string $caller,
?Exception $previous = null
?\Exception $previous = null
) {
parent::__construct($rpc, $code, $previous);
$this->prettifyTL($caller);