add element pdf path

This commit is contained in:
Yisroel Baum 2026-05-27 20:19:11 +03:00
parent 6c6b3ad257
commit cc1735ee7b
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
13 changed files with 76 additions and 0 deletions

View file

@ -11,6 +11,7 @@ class Element
private string $title,
private string $description,
private string $richText,
private ?string $pdfPath,
private Set $set,
private ?Element $parentElement,
) {
@ -36,6 +37,11 @@ class Element
return $this->richText;
}
public function getPdfPath(): ?string
{
return $this->pdfPath;
}
public function getSet(): Set
{
return $this->set;