slideMaster = $pSlideMaster; // Shape collection $this->shapeCollection = new \ArrayObject(); // Set identifier $this->identifier = \md5(\rand(0, 9999) . \time()); // Set a basic colorMap $this->colorMap = new ColorMap(); } public function getLayoutName(): ?string { return $this->layoutName; } public function setLayoutName(string $layoutName): self { $this->layoutName = $layoutName; return $this; } public function getSlideMaster(): SlideMaster { return $this->slideMaster; } }