add element pdf path
This commit is contained in:
parent
6c6b3ad257
commit
cc1735ee7b
13 changed files with 76 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue