_order = $order; $this->_enabled = $enabled; } public function getOrder(): int { return $this->_order; } public function isEnabled(): bool { return $this->_enabled; } abstract public function getContent(): string; }