Randomizing in Laminas

Code
<?php

use Laminas\Math\Rand;

$isStrong = true;
dump(Rand::getInteger(0, 100, $isStrong));

dump(Rand::getString(5, null, $isStrong));

dump(Rand::getFloat($isStrong));
Result
^ 85

^ "EQQ3f"

^ 0.45728043151308
Used Versions
PHP 8.3, Laminas MVC 3.2, Symfony 5.2, Laravel 8.28, PHPUnit 9.5, Doctrine ORM 2.8