mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 03:04:05 +00:00
9 lines
102 B
PHP
9 lines
102 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
interface OrderConfirmationNumberGenerator
|
|
{
|
|
public function generate();
|
|
}
|