Skip to content

Commit

Permalink
Add creator & updater to Status #20
Browse files Browse the repository at this point in the history
  • Loading branch information
drewroberts authored Mar 18, 2021
1 parent b772c2f commit 104d7d2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Models/Status.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
use Illuminate\Support\Collection;
use Illuminate\Support\Str;
use Tipoff\Support\Models\BaseModel;
use Tipoff\Support\Traits\HasCreator;
use Tipoff\Support\Traits\HasPackageFactory;
use Tipoff\Support\Traits\HasUpdater;

/**
* @property int id
Expand All @@ -22,7 +24,9 @@
*/
class Status extends BaseModel
{
use HasCreator;
use HasPackageFactory;
use HasUpdater;

protected $casts = [
'id' => 'integer',
Expand Down

0 comments on commit 104d7d2

Please sign in to comment.