Revert "PSR12 Linting"

This reverts commit 7e65e1d589.
This commit is contained in:
HDVinnie
2022-09-11 19:51:58 -04:00
parent 7e65e1d589
commit 2ca429c4ce
2014 changed files with 83255 additions and 83462 deletions
+9 -9
View File
@@ -23,16 +23,16 @@ class ChatUserResource extends JsonResource
public function toArray($request): array
{
return [
'id' => $this->id,
'username' => $this->username,
'chat_status' => $this->whenLoaded('chatStatus'),
'id' => $this->id,
'username' => $this->username,
'chat_status' => $this->whenLoaded('chatStatus'),
'chat_status_id' => $this->chat_status_id,
'chatroom_id' => $this->chatroom_id,
'group' => $this->whenLoaded('group'),
'echoes' => $this->whenLoaded('echoes'),
'group_id' => $this->group_id,
'title' => $this->title,
'image' => $this->image,
'chatroom_id' => $this->chatroom_id,
'group' => $this->whenLoaded('group'),
'echoes' => $this->whenLoaded('echoes'),
'group_id' => $this->group_id,
'title' => $this->title,
'image' => $this->image,
];
}
}