summaryrefslogtreecommitdiffstats
path: root/bl/itembl.php
diff options
context:
space:
mode:
Diffstat (limited to 'bl/itembl.php')
-rw-r--r--bl/itembl.php22
1 files changed, 21 insertions, 1 deletions
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(){
+
+ }
+
}