Skip to content

Commit

Permalink
Merge pull request #85 from kevariable/main
Browse files Browse the repository at this point in the history
fix(dto): missing cloneable trait
  • Loading branch information
kevariable authored Mar 24, 2023
2 parents 4bdf881 + df26830 commit 25856d5
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 25856d5

Please sign in to comment.