summaryrefslogtreecommitdiffstats
path: root/bl
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-21 17:07:57 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-21 17:07:57 +0100
commit2c0cbeac0de984dea76b302b5cc3d0b987c80b55 (patch)
treeba33b8ee5cb0e21acb8ade301fe88adbc9fe4dff /bl
parenta65714c9d2180a0b1b3f02e2dba1a5d5a4a29d2e (diff)
added additional empty methods
Diffstat (limited to 'bl')
-rw-r--r--bl/feedbl.php3
-rw-r--r--bl/folderbl.php3
-rw-r--r--bl/itembl.php22
3 files changed, 25 insertions, 3 deletions
diff --git a/bl/feedbl.php b/bl/feedbl.php
index bd89f1c9e..d196586bb 100644
--- a/bl/feedbl.php
+++ b/bl/feedbl.php
@@ -26,11 +26,12 @@
namespace OCA\News\Bl;
use \OCA\News\Db\Feed;
+use \OCA\News\Db\FeedMapper;
class FeedBl extends Bl {
- public function __construct($feedMapper){
+ public function __construct(FeedMapper $feedMapper){
parent::__construct($feedMapper);
}
diff --git a/bl/folderbl.php b/bl/folderbl.php
index fa12380e3..9d3a7e98d 100644
--- a/bl/folderbl.php
+++ b/bl/folderbl.php
@@ -26,11 +26,12 @@
namespace OCA\News\Bl;
use \OCA\News\Db\Folder;
+use \OCA\News\Db\FolderMapper;
class FolderBl extends Bl {
- public function __construct($folderMapper){
+ public function __construct(FolderMapper $folderMapper){
parent::__construct($folderMapper);
}
diff --git a/bl/itembl.php b/bl/itembl.php
index 5f02f69ad..7dee2318f 100644
--- a/bl/itembl.php
+++ b/bl/itembl.php
@@ -26,13 +26,33 @@
namespace OCA\News\Bl;
use \OCA\News\Db\Item;
+use \OCA\News\Db\ItemMapper;
class ItemBl extends Bl {
- public function __construct($itemMapper){
+ public function __construct(ItemMapper $itemMapper){
parent::__construct($itemMapper);
}
+ public function findAll(){
+
+ }
+
+
+ public function finStarred(){
+
+ }
+
+
+ public function star(){
+
+ }
+
+
+ public function read(){
+
+ }
+
}