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

Make owncloud 8.1 as the minimum default + cleanups

This commit is contained in:
Loic Blot
2016-05-19 18:27:48 +02:00
parent 4fc1a91a39
commit 729b48a846
5 changed files with 38 additions and 40 deletions
+3 -1
View File
@@ -13,6 +13,7 @@ namespace OCA\OcSms\Controller;
use \OCP\IRequest;
use \OCP\Contacts\IManager as IContactsManager;
use \OCP\AppFramework\Http\TemplateResponse;
use \OCP\AppFramework\Controller;
use \OCP\AppFramework\Http\JSONResponse;
@@ -35,7 +36,8 @@ class SmsController extends Controller {
private $urlGenerator;
private $contactCache;
public function __construct ($appName, IRequest $request, $userId, SmsMapper $mapper, ConfigMapper $cfgMapper, $contactsManager, $urlGenerator, OcSmsApp $app){
public function __construct ($appName, IRequest $request, $userId, SmsMapper $mapper, ConfigMapper $cfgMapper,
IContactsManager $contactsManager, $urlGenerator, OcSmsApp $app) {
parent::__construct($appName, $request);
$this->app = $app;
$this->userId = $userId;