summaryrefslogtreecommitdiffstats
path: root/folder.bl.php
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2013-03-02 19:50:33 +0100
committerAlessandro Cosentino <cosenal@gmail.com>2013-03-02 19:50:33 +0100
commit4902253e9c8aac706091c6337391153b02923689 (patch)
tree3012e106d477a83e718ea42741c445895922df8e /folder.bl.php
parent165540d34652fb895cb7f29c818fb3427bfba8c4 (diff)
prototype for business layer for feed
Diffstat (limited to 'folder.bl.php')
-rw-r--r--folder.bl.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/folder.bl.php b/folder.bl.php
index b008f1dde..ff1164c28 100644
--- a/folder.bl.php
+++ b/folder.bl.php
@@ -8,7 +8,7 @@ class FolderBL {
$this->folderMapper = $folderMapper;
}
- public static function getAll() {
- $folders = $this->folderMapper->getAll();
+ public function getAll() {
+ return $this->folderMapper->getAll();
}
}