1
0
mirror of https://github.com/nextcloud/ocsms.git synced 2026-08-11 16:32:55 +00:00

Fixed Nextcloud 12 compatibility (#181)

This commit is contained in:
Lorenz Brun
2017-05-06 08:12:41 +02:00
committed by Loïc Blot
parent 16064af6d5
commit db70056825
5 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -11,7 +11,7 @@
namespace OCA\OcSms\Db;
use \OCP\IDb;
use \OCP\IDBConnection;
use \OCP\AppFramework\Db\Mapper;
@@ -19,7 +19,7 @@ use \OCA\OcSms\AppInfo\OcSmsApp;
use \OCA\OcSms\Lib\PhoneNumberFormatter;
class ConversationStateMapper extends Mapper {
public function __construct (IDb $db) {
public function __construct (IDBConnection $db) {
parent::__construct($db, 'ocsms_smsdatas');
}