diff --git a/src/Exception/ConnectionFail.php b/src/Exception/ConnectionFail.php index 40d2de3..d6add25 100644 --- a/src/Exception/ConnectionFail.php +++ b/src/Exception/ConnectionFail.php @@ -9,6 +9,9 @@ use Throwable; final class ConnectionFail extends RuntimeException implements NsqException { + /** + * @codeCoverageIgnore + */ public static function fromThrowable(Throwable $throwable): self { return new self($throwable->getMessage(), (int) $throwable->getCode(), $throwable);