2016-11-16 20 views
-1

Error file image如何解決類「應用活動事件」在laravel 5.3沒有找到擴展事件類

class NewMessage extends Event{ 

} 
//Using this i am getting error visible in image. 
+0

添加使用App \活動\事件;命名空間App \ Events之後; –

+0

在課前使用App \ Event \ Event添加 – DsRaj

+0

<?php namespace App \ Events; 使用App \ Events \ Event; 使用Illuminate \ Queue \ SerializesModels; 使用Illuminate \ Contracts \ Broadcasting \ ShouldBroadcast; 類NewMessage擴展事件 { } –

回答

3

你需要從你的代碼只是刪除extends Event

+1

人們通常使用'extends'是有原因的。這不是一個非常有用的答案。 – ceejayoz

+1

@ceejayoz它措辭不佳,它實際上是正確的。 –

+1

@ N.B。也許。過去有一個默認隨Laravel提供的App \ Events \ Event抽象類。 https://github.com/laravel/laravel/blob/05235ee6bff52926b266ce0a295f3f2fc35451e0/app/Events/Event.php – ceejayoz