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