目前,我正试图为我的laravel 5项目设置socket.io & redis。我创建了一个使用接口Illuminate\Contracts\Broadcasting\ShouldBroadcast.的事件但我得到了以下错误:
Interface 'Illuminate\Contracts\Broadcasting\ShouldBroadcast' not found发布于 2016-03-18 23:41:39
Laravel5.0没有事件广播,这就是为什么无法找到接口。请参阅5.0中的事件文档:
https://laravel.com/docs/5.0/events
在5.1中引入了广播:
https://laravel.com/docs/5.1/events#broadcasting-events
一些参考材料:
https://stackoverflow.com/questions/36095933
复制相似问题