Skip to content

Fix menubar not ready #453

New issue

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

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

Already on ? Sign in to your account

Merged
merged 5 commits into from
Dec 29, 2024
Merged
Changes from all commits
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
21 changes: 21 additions & 0 deletions src/Events/MenuBar/MenuBarCreated.php
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
<?php

namespace Native\Laravel\Events\MenuBar;

use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Contracts\Broadcasting\ShouldBroadcastNow;
use Illuminate\Foundation\Events\Disable;
use Illuminate\Queue\SerializesModels;

class MenuBarCreated implements ShouldBroadcastNow
{
use Disable, InteractsWithSockets, SerializesModels;

public function broadcastOn()
{
return [
new Channel('nativephp'),
];
}
}
Loading