File "SupportChildren.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Features/SupportChildren.php
File size: 536 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Livewire\Features;

use Livewire\Livewire;

class SupportChildren
{
    static function init() { return new static; }

    function __construct()
    {
        Livewire::listen('component.dehydrate', function ($component, $response) {
            $response->memo['children'] = $component->getRenderedChildren();
        });

        Livewire::listen('component.hydrate.subsequent', function ($component, $request) {
            $component->setPreviouslyRenderedChildren($request->memo['children']);
        });
    }
}