File "ConnectionHandler.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Connection/ConnectionHandler.php
File size: 360 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Livewire\Connection;
use Livewire\LifecycleManager;
abstract class ConnectionHandler
{
public function handle($payload)
{
return LifecycleManager::fromSubsequentRequest($payload)
->boot()
->hydrate()
->renderToView()
->dehydrate()
->toSubsequentResponse();
}
}