mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-27 11:45:14 +00:00
12 lines
195 B
PHP
12 lines
195 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
class RandomOrderConfirmationNumberGenerator implements OrderConfirmationNumberGenerator
|
|
{
|
|
public function generate()
|
|
{
|
|
return str_repeat('A', 24);
|
|
}
|
|
}
|