summaryrefslogtreecommitdiffstats
path: root/db/item.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-14 17:32:49 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-14 17:32:49 +0200
commit160a0dfebaeb21cc75d7166dfbac6d0ef1a51460 (patch)
tree28e2555c97462d60356ef933d5c71c5326649747 /db/item.php
parentacc2df1251a1c1b9ec5ede13bdf46d516dc64b0d (diff)
convert array() to []
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()
- );
+ ];
}