21 lines
377 B
PHP
21 lines
377 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Created by PhpStorm.
|
||
|
* User: mkoch
|
||
|
* Date: 2/12/2017
|
||
|
* Time: 4:54 PM
|
||
|
*/
|
||
|
|
||
|
namespace BusinessLogic\Tickets;
|
||
|
|
||
|
|
||
|
class Autoassigner {
|
||
|
/**
|
||
|
* @param $categoryId int
|
||
|
* @param $heskSettings array
|
||
|
* @return int|null The user ID, or null if no user found
|
||
|
*/
|
||
|
function getNextUserForTicket($categoryId, $heskSettings) {
|
||
|
return 0;
|
||
|
}
|
||
|
}
|