parent = $parent; } public function getParent(): BstoreContainer { return $this->parent; } /** * Get the BLIP. */ public function getBlip(): ?BSE\Blip { return $this->blip; } /** * Set the BLIP. */ public function setBlip(BSE\Blip $blip): void { $this->blip = $blip; $blip->setParent($this); } /** * Get the BLIP type. */ public function getBlipType(): int { return $this->blipType; } /** * Set the BLIP type. */ public function setBlipType(int $blipType): void { $this->blipType = $blipType; } }