diff --git a/app/Entities/Cloudflare/AuditLogEntity.php b/app/Entities/Cloudflare/AuditLogEntity.php index ea5f001..e7a906e 100644 --- a/app/Entities/Cloudflare/AuditLogEntity.php +++ b/app/Entities/Cloudflare/AuditLogEntity.php @@ -9,7 +9,7 @@ class AuditLogEntity extends CommonEntity { public function __toString() { - return "{$this->getPK()}|{$this->getTitle()}|{$this->attributes['type']}|{$this->attributes['status']}"; + return "{$this->getPK()}|{$this->getTitle()}|{$this->attributes['status']}"; } public function getPK(): string { @@ -24,8 +24,4 @@ class AuditLogEntity extends CommonEntity $this->attributes[AuditLogModel::TITLE] = $title; } //Common Function - public function getParent(): string - { - return $this->attributes[AuditLogModel::PARENT]; - } }