Files
ticketbeast/app/RandomOrderConfirmationNumberGenerator.php
2017-03-13 18:39:22 -04:00

14 lines
278 B
PHP

<?php
namespace App;
class RandomOrderConfirmationNumberGenerator implements OrderConfirmationNumberGenerator
{
public function generate()
{
$pool = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789';
return substr(str_shuffle(str_repeat($pool, 24)), 0, 24);
}
}