PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
livewire
/
livewire
/
src
/
Features
/
SupportStreaming
/
Editing: HandlesStreaming.php
<?php namespace Livewire\Features\SupportStreaming; use Livewire\ComponentHookRegistry; trait HandlesStreaming { function stream($to, $content, $replace = false) { $hook = ComponentHookRegistry::getHook($this, SupportStreaming::class); $hook->stream($to, $content, $replace); } }
SAVE
CANCEL