Skip to content

Commit

Permalink
Fix dispatcher method that was removed
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHigby authored and pionl committed Nov 29, 2020
1 parent fa7e144 commit b3e68bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PositionObserver.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,6 @@ protected function firePositioningEvent($query)
*/
protected function firePositionedEvent(Model $model)
{
$this->events->fire('eloquent.positioned: '.get_class($model), [$model]);
$this->events->dispatch('eloquent.positioned: '.get_class($model), [$model]);
}
}

0 comments on commit b3e68bc

Please sign in to comment.