summaryrefslogtreecommitdiffstats
path: root/lib/Db/EntityJSONSerializer.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Db/EntityJSONSerializer.php')
-rw-r--r--lib/Db/EntityJSONSerializer.php14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/Db/EntityJSONSerializer.php b/lib/Db/EntityJSONSerializer.php
index 2a7ad9189..72fbf99ec 100644
--- a/lib/Db/EntityJSONSerializer.php
+++ b/lib/Db/EntityJSONSerializer.php
@@ -5,18 +5,20 @@
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Alessandro Cosentino 2012
- * @copyright Bernhard Posselt 2012, 2014
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright 2012 Alessandro Cosentino
+ * @copyright 2012-2014 Bernhard Posselt
*/
namespace OCA\News\Db;
-trait EntityJSONSerializer {
+trait EntityJSONSerializer
+{
- public function serializeFields($properties) {
+ public function serializeFields($properties)
+ {
$result = [];
foreach($properties as $property) {
$result[$property] = $this->$property;