Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin committed Jul 21, 2024
1 parent 4904b74 commit 4ccf116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Models/Casts/TrustPath.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class TrustPath implements CastsAttributes
*/
public function get($model, string $key, $value, array $attributes): ?TrustPathLib
{
return $value !== null ? app(SerializerInterface::class)->deserialize($value, TrustPath::class, 'json') : null;
return $value !== null ? app(SerializerInterface::class)->deserialize($value, TrustPathLib::class, 'json') : null;
}

/**
Expand Down

0 comments on commit 4ccf116

Please sign in to comment.