芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/vendor/livewire/livewire/src/Component.php
getId(); } function setId($id) { $this->__id = $id; } function getId() { return $this->__id; } function setName($name) { $this->__name = $name; } function getName() { return $this->__name; } function skipRender($html = null) { store($this)->set('skipRender', $html ?: true); } function skipMount() { store($this)->set('skipMount', true); } function skipHydrate() { store($this)->set('skipHydrate', true); } function __isset($property) { try { $value = $this->__get($property); if (isset($value)) { return true; } } catch(PropertyNotFoundException $ex) {} return false; } function __get($property) { $value = 'noneset'; $returnValue = function ($newValue) use (&$value) { $value = $newValue; }; $finish = trigger('__get', $this, $property, $returnValue); $value = $finish($value); if ($value === 'noneset') { throw new PropertyNotFoundException($property, $this->getName()); } return $value; } function __unset($property) { trigger('__unset', $this, $property); } function __call($method, $params) { $value = 'noneset'; $returnValue = function ($newValue) use (&$value) { $value = $newValue; }; $finish = trigger('__call', $this, $method, $params, $returnValue); $value = $finish($value); if ($value !== 'noneset') { return $value; } if (static::hasMacro($method)) { return $this->macroCall($method, $params); } throw new BadMethodCallException(sprintf( 'Method %s::%s does not exist.', static::class, $method )); } }