summaryrefslogtreecommitdiffstats
path: root/bl/itembl.php
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/itembl.php
parenta65714c9d2180a0b1b3f02e2dba1a5d5a4a29d2e (diff)
added additional empty methods
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(){
+
+ }
+
}