目前我正在尝试设置socket.io&我的laravel 5项目的redis。 我创建了一个使用Interface Illuminate \ Contracts \ Broadcasting \ ShouldBroadcast的事件。 但我收到以下错误:
Interface 'Illuminate\Contracts\Broadcasting\ShouldBroadcast' not found
答案 0 :(得分:2)
Laravel 5.0没有事件广播,这就是无法找到界面的原因。请参阅5.0中的事件文档:
https://laravel.com/docs/5.0/events
广播在5.1中引入:
https://laravel.com/docs/5.1/events#broadcasting-events
一些参考资料: