File "Placeholder.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Features/Placeholder.php
File size: 472 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Livewire\Features;
use Livewire\Livewire;
class Placeholder
{
static function init() { return new static; }
function __construct()
{
Livewire::listen('component.hydrate', function ($component, $request) {
//
});
Livewire::listen('component.dehydrate', function ($component, $response) {
//
});
Livewire::listen('flush-state', function() {
//
});
}
}