for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace iiifx\PasswordGenerator\Method;
class MethodMT implements MethodInterface
{
/**
* @inheritdoc
*/
public static function isAvailable ()
return function_exists( 'mt_rand' );
}
public function getRandomInt ( $limit )
return mt_rand( 0, $limit );