1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 23:22:52 +01:00
invoiceninja/app/Models/TicketCategory.php

18 lines
212 B
PHP
Raw Normal View History

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