Remove containing array

This commit is contained in:
Skylar Ittner 2020-09-03 19:43:35 -06:00
parent c31826e656
commit aeee08270d

View File

@ -105,15 +105,13 @@ class Event implements JsonSerializable {
global $Strings; global $Strings;
if ($this->exists) { if ($this->exists) {
return [ return [
"info" => [ "id" => $this->getID(),
"id" => $this->getID(), "machineid" => $this->getMachineID(),
"machineid" => $this->getMachineID(), "name" => $this->getName(),
"name" => $this->getName(), "date" => $this->getDate(),
"date" => $this->getDate(), "techuid" => $this->getTechUID(),
"techuid" => $this->getTechUID(), "publicnotes" => $this->getPublicNotes(),
"publicnotes" => $this->getPublicNotes(), "privatenotes" => $this->getPrivateNotes()
"privatenotes" => $this->getPrivateNotes()
]
]; ];
} }
return []; return [];