Skip to content

Commit

Permalink
fix: missing ; in contract
Browse files Browse the repository at this point in the history
  • Loading branch information
phpsa authored Nov 8, 2022
1 parent 5a0970a commit a6ecf6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Contracts/HasSearchableHash.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static function bootHasSearchableHash(): void
{
//We need to setup hashes for this
static::saved(function ($model) {
$model->buildSearchHash()
$model->buildSearchHash();
});
}

Expand Down

0 comments on commit a6ecf6a

Please sign in to comment.