PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
livewire
/
livewire
/
src
/
Features
/
SupportEvents
/
Editing: HandlesEvents.php
<?php namespace Livewire\Features\SupportEvents; use function Livewire\store; trait HandlesEvents { protected $listeners = []; protected function getListeners() { return $this->listeners; } public function dispatch($event, ...$params) { $event = new Event($event, $params); store($this)->push('dispatched', $event); return $event; } }
SAVE
CANCEL