8000 Implement MenuBarDroppedFiles event by arondeparon · Pull Request #113 · NativePHP/laravel · GitHub
[go: up one dir, main page]

Skip to content

Implement MenuBarDroppedFiles event #113

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 3, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add files to the event
  • Loading branch information
arondeparon committed Aug 2, 2023
commit 9971e81e2e683488848b532df7b0963623ad8f03
4 changes: 4 additions & 0 deletions src/Events/MenuBar/MenuBarDroppedFiles.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ class MenuBarDroppedFiles implements ShouldBroadcastNow
{
use Dispatchable, InteractsWithSockets, SerializesModels;

public function __construct(public array $files = [])
{
}

public function broadcastOn()
{
return [
Expand Down
0