summaryrefslogtreecommitdiffstats
path: root/bl/feedbl.php
diff options
context:
space:
mode:
Diffstat (limited to 'bl/feedbl.php')
-rw-r--r--bl/feedbl.php32
1 files changed, 31 insertions, 1 deletions
diff --git a/bl/feedbl.php b/bl/feedbl.php
index 14182814e..d196586bb 100644
--- a/bl/feedbl.php
+++ b/bl/feedbl.php
@@ -26,13 +26,43 @@
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);
}
+ // README: only call this for the cronjob!
+ public function findAll(){
+
+ }
+
+
+ public function findAllFromUser(){
+
+ }
+
+
+ public function create(){
+
+ }
+
+
+ public function update(){
+
+ }
+
+
+ public function move(){
+
+ }
+
+
+ public function read(){
+
+ }
}