summaryrefslogtreecommitdiffstats
path: root/folder.bl.php
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2013-03-02 16:21:50 +0100
committerAlessandro Cosentino <cosenal@gmail.com>2013-03-02 16:21:50 +0100
commit165540d34652fb895cb7f29c818fb3427bfba8c4 (patch)
treefcce5b92ace80cabff079f7801f2207f2491523e /folder.bl.php
parentd6e8bd9cf2ec194e13bff3bdc5381f2919d07a17 (diff)
prototype of business layer for api
Diffstat (limited to 'folder.bl.php')
-rw-r--r--folder.bl.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/folder.bl.php b/folder.bl.php
new file mode 100644
index 000000000..b008f1dde
--- /dev/null
+++ b/folder.bl.php
@@ -0,0 +1,14 @@
+<?php
+
+namespace OCA\News;
+
+class FolderBL {
+
+ public function __construct($folderMapper){
+ $this->folderMapper = $folderMapper;
+ }
+
+ public static function getAll() {
+ $folders = $this->folderMapper->getAll();
+ }
+}