12 lines
180 B
PHP
12 lines
180 B
PHP
|
<?php
|
||
|
namespace BusinessLogic\Tickets;
|
||
|
|
||
|
|
||
|
class TicketValidators {
|
||
|
/**
|
||
|
* @param $customerEmail string
|
||
|
*/
|
||
|
function isCustomerAtMaxTickets($customerEmail) {
|
||
|
|
||
|
}
|
||
|
}
|