芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/vendor/livewire/livewire/src/Wrapped.php
fallback = $fallback; return $this; } function __call($method, $params) { if (! method_exists($this->target, $method)) return value($this->fallback); try { return ImplicitlyBoundMethod::call(app(), [$this->target, $method], $params); } catch (\Throwable $e) { $shouldPropagate = true; $stopPropagation = function () use (&$shouldPropagate) { $shouldPropagate = false; }; trigger('exception', $this->target, $e, $stopPropagation); $shouldPropagate && throw $e; } } }