Randomizing in Laminas

Code
<?php

use Laminas\Math\Rand;

$isStrong true;
dump(Rand::getInteger(0100$isStrong));

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

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

^ "abI2Y"

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