mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 21:27:44 +03:00
Removed superfluous exception code by using named args
This commit is contained in:
parent
6d5bce0078
commit
92c80e7833
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ class GeolocationDbUpdateFailedException extends RuntimeException implements Exc
|
||||||
|
|
||||||
private function __construct(string $message, ?Throwable $previous = null)
|
private function __construct(string $message, ?Throwable $previous = null)
|
||||||
{
|
{
|
||||||
parent::__construct($message, 0, $previous);
|
parent::__construct($message, previous: $previous);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function withOlderDb(?Throwable $prev = null): self
|
public static function withOlderDb(?Throwable $prev = null): self
|
||||||
|
|
Loading…
Reference in a new issue