Skip to content
Code-Schnipsel Gruppen Projekte

fix: declaration of ArticleList::toHTMLWithCSS must be compatible with...

Zusammengeführt Henning Leutz schlägt vor, next-3.x in main zu mergen.
1 Datei
+ 3
2
Änderungen vergleichen
  • Nebeneinander
  • In der Reihe
@@ -551,9 +551,10 @@ public function renderForMail(): string
public function toHTMLWithCSS(
bool|string $template = false,
bool|string $articleTemplate = false
bool|string $articleTemplate = false,
?QUI\Interfaces\Template\EngineInterface $Engine = null,
): string {
return $this->toUniqueList()->toHTMLWithCSS($template, $articleTemplate);
return $this->toUniqueList()->toHTMLWithCSS($template, $articleTemplate, $Engine);
}
//endregion