mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 14:12:44 +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;
|
|
}
|
|
}
|