From a6783d0b1b052bb3fb94cb40f621d5490c619d7d Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Thu, 2 Apr 2026 19:54:59 +0400 Subject: [PATCH] Removing `uuid` from PostDTO toArray output --- shared/DTOs/PostDTO.php | 1 - 1 file changed, 1 deletion(-) diff --git a/shared/DTOs/PostDTO.php b/shared/DTOs/PostDTO.php index dd89350..7abc14a 100644 --- a/shared/DTOs/PostDTO.php +++ b/shared/DTOs/PostDTO.php @@ -115,7 +115,6 @@ public function getUuid(): ?string public function toArray(): array { return array_filter([ - 'uuid' => $this->uuid, 'user_uuid' => $this->userUuid, 'title' => $this->title, 'content' => $this->content,