summaryrefslogtreecommitdiffstats
path: root/bl
diff options
context:
space:
mode:
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(){
+
+ }
+
}