summaryrefslogtreecommitdiffstats
path: root/service
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-08 14:52:09 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-08 14:52:09 +0200
commitc96445eadb1dbf93b21c7894332c4b4b98cab7e5 (patch)
tree3cff5ebfdd369a85cc8ccb8dc6b816ca0ca046a4 /service
parent24aa2e62fd084b3a2efa6cb6a23456001b7b2f50 (diff)
fix type issues with mappers
Diffstat (limited to 'service')
-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;
}