diff --git a/src/Util/CorrelativeUtils.php b/src/Util/CorrelativeUtils.php index 47a8936..3395d60 100644 --- a/src/Util/CorrelativeUtils.php +++ b/src/Util/CorrelativeUtils.php @@ -67,10 +67,13 @@ class CorrelativeUtils /** * Auto-generates an algorithmically valid Rut, because why not. * + * @noinspection PhpDocMissingThrowsInspection + * * @return Rut */ public static function autoGenerateValidRut(): Rut { + /** @noinspection PhpUnhandledExceptionInspection */ $correlative = \random_int(1000000, 40000000); return static::createValidRutOnlyFromCorrelative($correlative);