invoiceninja/app/Models/TicketCategory.php

18 lines
212 B
PHP
Raw Permalink Normal View History

2019-01-30 22:00:26 +11:00
<?php
namespace App\Models;
use Eloquent;
class TicketCategory extends Eloquent
{
/**
* @return mixed
*/
public function getEntityType()
{
return ENTITY_TICKET_CATEGORY;
}
}