Laravel向私人频道广播失败

时间:2019-03-17 10:35:52

标签: laravel websocket redis socket.io laravel-echo

我正在使用Redis将消息广播到私人频道,但是每当事件启动时都会收到以下错误消息

 <!-- Custom Preference Theme inherits from the v14 support library Material Theme -->
<style name="AppPreferenceTheme" parent="@style/PreferenceThemeOverlay.v14.Material">
    <item name="android:textSize">14sp</item>
</style>

<!-- And set preference Theme in your Main Theme-->
<style name="YourTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="preferenceTheme">@style/AppPreferenceTheme</item>
</style>

我确保要导入

 Class 'App\Events\PrivateChannel' not found

但仍然没有。在此之前,公共渠道已经成功运作。为什么为什么找不到PrivateChannel?有点让我难过。

事件中的我的broadcastOn方法

use Illuminate\Broadcasting\PrivateChannel;

完整事件

public function broadcastOn()
{
    return new PrivateChannel('invitation.' . $this->message->to);
}

0 个答案:

没有答案