summaryrefslogtreecommitdiffstats
path: root/controller/itemapicontroller.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 18:19:23 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 18:19:23 +0200
commit66c73a96ac2dda076bcfe0dc0a1ca2a7e169149d (patch)
treedc0318fa459e4f313217ee38e4bc63524513d721 /controller/itemapicontroller.php
parentf5e64d35c05b14016eb4fffff7199386a97a9b43 (diff)
first try to set indention limit at 80 characters in php
Diffstat (limited to 'controller/itemapicontroller.php')
-rw-r--r--controller/itemapicontroller.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/controller/itemapicontroller.php b/controller/itemapicontroller.php
index 3674d644c..187a2b6b1 100644
--- a/controller/itemapicontroller.php
+++ b/controller/itemapicontroller.php
@@ -120,7 +120,9 @@ class ItemApiController extends ApiController {
private function setStarred($isStarred, $feedId, $guidHash) {
try {
- $this->itemService->star($feedId, $guidHash, $isStarred, $this->userId);
+ $this->itemService->star(
+ $feedId, $guidHash, $isStarred, $this->userId
+ );
} catch(ServiceNotFoundException $ex){
return $this->error($ex, Http::STATUS_NOT_FOUND);
}