File "RenderView.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/HydrationMiddleware/RenderView.php
File size: 351 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Livewire\HydrationMiddleware;
class RenderView implements HydrationMiddleware
{
public static function hydrate($unHydratedInstance, $request)
{
//
}
public static function dehydrate($instance, $response)
{
$html = $instance->output();
data_set($response, 'effects.html', $html);
}
}