mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 23:22:52 +01:00
18 lines
212 B
PHP
18 lines
212 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Eloquent;
|
||
|
|
||
|
|
||
|
class TicketCategory extends Eloquent
|
||
|
{
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getEntityType()
|
||
|
{
|
||
|
return ENTITY_TICKET_CATEGORY;
|
||
|
}
|
||
|
}
|