share = $share; $this->view = $view; $this->parent = $parent; } /** * @since 19.0.0 */ public function getShare(): IShare { return $this->share; } /** * @since 19.0.0 */ public function getView(): View { return $this->view; } /** * @since 19.0.0 */ public function getParent(): string { return $this->parent; } /** * @since 19.0.0 */ public function setParent(string $parent): void { $this->parent = $parent; } }