* @author Bernhard Posselt * @copyright Alessandro Cosentino 2012 * @copyright Bernhard Posselt 2012, 2014 */ namespace OCA\News\Db; trait EntityJSONSerializer { public function serializeFields($properties) { $result = []; foreach($properties as $property) { $result[$property] = $this->$property; } return $result; } }