Hey folks! Wouldn't it make sense to make the #[LiveListener] attribute repeatable? Let's say there is a method that needs to listen to different events. Would be great if I'd do like so:
#[LiveListener(eventName: 'rocket:launched')]
#[LiveListener(eventName: 'rocket:landed')]
public function foo(){
// do something...
}
What do you think? 😃