mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 18:45:01 +00:00
9 lines
99 B
PHP
9 lines
99 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
interface TicketCodeGenerator
|
|
{
|
|
public function generateFor($ticket);
|
|
}
|