summaryrefslogtreecommitdiffstats
path: root/db/item.php
diff options
context:
space:
mode:
Diffstat (limited to 'db/item.php')
-rw-r--r--db/item.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/db/item.php b/db/item.php
index 535dd745c..3b18cbc8e 100644
--- a/db/item.php
+++ b/db/item.php
@@ -106,7 +106,7 @@ class Item extends Entity implements IAPI {
public function toAPI() {
- return array(
+ return [
'id' => $this->getId(),
'guid' => $this->getGuid(),
'guidHash' => $this->getGuidHash(),
@@ -121,12 +121,12 @@ class Item extends Entity implements IAPI {
'unread' => $this->isUnread(),
'starred' => $this->isStarred(),
'lastModified' => $this->getLastModified()
- );
+ ];
}
public function toExport($feeds) {
- return array(
+ return [
'guid' => $this->getGuid(),
'url' => $this->getUrl(),
'title' => $this->getTitle(),
@@ -138,7 +138,7 @@ class Item extends Entity implements IAPI {
'unread' => $this->isUnread(),
'starred' => $this->isStarred(),
'feedLink' => $feeds['feed'. $this->getFeedId()]->getLink()
- );
+ ];
}