Skip to content

Commit

Permalink
fix(dto): missing cloneable trait
Browse files Browse the repository at this point in the history
  • Loading branch information
kevariable committed Mar 24, 2023
1 parent cf3f7a0 commit df26830
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Foundation/DataTransferObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@
use Illuminate\Support\Str;
use Illuminate\Support\Traits\Tappable;
use KoalaFacade\DiamondConsole\Foundation\DataTransferObject\HasResolvable;
use Spatie\Cloneable\Cloneable;

abstract readonly class DataTransferObject
{
use HasResolvable;
use Tappable;
use Cloneable;

/**
* Prevent properties to included on create
Expand Down

0 comments on commit df26830

Please sign in to comment.