2017-02-11 16:42:40 -05:00

16 lines
240 B
PHP

<?php
namespace BusinessLogic\Tickets;
class TrackingIdGenerator {
private $ticketGateway;
function __construct($ticketGateway) {
$this->ticketGateway = $ticketGateway;
}
function generateTrackingId() {
}
}