summaryrefslogtreecommitdiffstats
path: root/bl/bl.php
diff options
context:
space:
mode:
Diffstat (limited to 'bl/bl.php')
-rw-r--r--bl/bl.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/bl/bl.php b/bl/bl.php
index eeabdcb17..ee4ace588 100644
--- a/bl/bl.php
+++ b/bl/bl.php
@@ -28,14 +28,14 @@ namespace OCA\News\Bl;
use \OCA\AppFramework\Db\DoesNotExistException;
use \OCA\AppFramework\Db\MultipleObjectsReturnedException;
-use \OCA\News\Db\NewsMapper;
+use \OCA\News\Db\IMapper;
abstract class Bl {
protected $mapper;
- public function __construct(NewsMapper $mapper){
+ public function __construct(IMapper $mapper){
$this->mapper = $mapper;
}