HOME


Mini Shell 1.0
DIR: /home/cardxfeb/www/vendor/livewire/livewire/src/Features/SupportStreaming/
Upload File :
Current File : //home/cardxfeb/www/vendor/livewire/livewire/src/Features/SupportStreaming/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); }
}