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