value = $value; $this->merge = true; } /** * Resolve the property value. * * @return mixed */ public function __invoke() { return is_callable($this->value) ? App::call($this->value) : $this->value; } }