| Current Path : /var/www/html/eva.sumar.com.py/vendor/livewire/livewire/src/Connection/ |
| Current File : /var/www/html/eva.sumar.com.py/vendor/livewire/livewire/src/Connection/ConnectionHandler.php |
<?php
namespace Livewire\Connection;
use Livewire\LifecycleManager;
abstract class ConnectionHandler
{
public function handle($payload)
{
return LifecycleManager::fromSubsequentRequest($payload)
->hydrate()
->renderToView()
->dehydrate()
->toSubsequentResponse();
}
}