![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.cartinsight.co/vendor/livewire/livewire/src/Features/SupportEvents/ |
<?php namespace Livewire\Features\SupportEvents; use Livewire\Mechanisms\ComponentRegistry; class Event { protected $name; protected $params; protected $self; protected $component; public function __construct($name, $params) { $this->name = $name; $this->params = $params; } public function self() { $this->self = true; return $this; } public function component($name) { $this->component = $name; return $this; } public function to($name) { return $this->component($name); } public function serialize() { $output = [ 'name' => $this->name, 'params' => $this->params, ]; if ($this->self) $output['self'] = true; if ($this->component) $output['to'] = app(ComponentRegistry::class)->getName($this->component); return $output; } }