for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Vehsamrak\Terraformator\Service;
/**
* @author Vehsamrak
*/
class RandomGenerator
{
public function getRandomKeyFromArray(array $array): int
return array_rand($array);
}