<?php abstract class FormatAbstract { public const ITUNES_NS = 'http://www.itunes.com/dtds/podcast-1.0.dtd'; const MIME_TYPE = 'text/plain'; protected array $feed = []; protected array $items = []; protected int $lastModified; abstract public function render(): string; public function setFeed(array $feed) { $default = [ 'name' => '', 'uri' => '', 'icon' => '', 'donationUri' => '', ]; $this->feed = array_merge($default, $feed); } public function getFeed(): array { return $this->feed; } public function setItems(array $items): void { foreach ($items as $item) { $this->items[] = FeedItem::fromArray($item); } } /** * @return FeedItem[] The items */ public function getItems(): array { return $this->items; } public function getMimeType(): string { return static::MIME_TYPE; } public function setLastModified(int $lastModified) { $this->lastModified = $lastModified; } }