mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
31 lines
428 B
PHP
31 lines
428 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
||
|
|
||
|
/**
|
||
|
* Class PaymentTerm.
|
||
|
*/
|
||
|
class TaskStatus extends EntityModel
|
||
|
{
|
||
|
use SoftDeletes;
|
||
|
|
||
|
/**
|
||
|
* @var bool
|
||
|
*/
|
||
|
public $timestamps = true;
|
||
|
/**
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $dates = ['deleted_at'];
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getEntityType()
|
||
|
{
|
||
|
return ENTITY_TASK_STATUS;
|
||
|
}
|
||
|
}
|