16 lines
240 B
PHP
Raw Normal View History

2017-02-11 16:24:08 -05:00
<?php
namespace BusinessLogic\Tickets;
class TrackingIdGenerator {
2017-02-11 16:42:40 -05:00
private $ticketGateway;
function __construct($ticketGateway) {
$this->ticketGateway = $ticketGateway;
}
2017-02-11 16:24:08 -05:00
function generateTrackingId() {
}
}