public function getFullInArray()
 {
     return ['id' => $this->id, 'name' => $this->name, 'parentID' => $this->parentId, 'path' => $this->getFullPath(), 'userID' => $this->userId, 'subdirs' => JsonTransformer::arrayToMinJson($this->getSubdirs()), 'files' => JsonTransformer::arrayToFullJson($this->getFiles()), 'created' => $this->created->format(\DateTime::ISO8601), 'updated' => $this->updated->format(\DateTime::ISO8601)];
 }
 public function getFullInArray()
 {
     return ['id' => $this->getId(), 'userID' => $this->getUserId(), 'title' => $this->getTitle(), 'trackCount' => $this->getTracks()->count(), 'tracks' => JsonTransformer::arrayToFullJson($this->getTracks())];
 }