getPK()}|{$this->getTitle()}|{$this->attributes['type']}|{$this->attributes['status']}"; } public function getPK(): string { return $this->attributes[AccountModel::PK]; } public function getTitle(): string { return $this->attributes[AccountModel::TITLE]; } public function setTitle(string $title): void { $this->attributes[AccountModel::TITLE] = $title; } //Common Function public function getParent(): int { return $this->attributes[AccountModel::PARENT]; } }