mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 18:45:01 +00:00
14 lines
278 B
PHP
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);
|
|
}
|
|
}
|