Skip to content

Commit

Permalink
fix: pass required arguments only
Browse files Browse the repository at this point in the history
  • Loading branch information
jaulz committed Aug 12, 2023
1 parent f8b2be4 commit 27bb3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Concerns/WithAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static function runWithAttributes(...$arguments)
})
->toArray();

return $action->handle(...$arguments);
return $action->handle(...$requiredArguments);
}

/**
Expand Down

0 comments on commit 27bb3f3

Please sign in to comment.