From 9ff5740d3c90fe821ac68e0da8ff6dfaf41c028d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Mon, 28 Oct 2024 11:38:50 +0900 Subject: [PATCH] cfmgrv4 init...4 --- app/Entities/Cloudflare/AuditLogEntity.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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]; - } }