mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 11:14:06 +00:00
9 lines
93 B
PHP
9 lines
93 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
interface InvitationCodeGenerator
|
|
{
|
|
public function generate();
|
|
}
|