Merge pull request #110 from pranavk/constsig

Fix incorrect constructor signature
pull/1/head
Lukas Reschke 8 years ago committed by GitHub
commit 52379137fc

@ -19,6 +19,7 @@ use \OCP\AppFramework\Http\ContentSecurityPolicy;
use \OCP\AppFramework\Http\JSONResponse; use \OCP\AppFramework\Http\JSONResponse;
use \OCP\AppFramework\Http\TemplateResponse; use \OCP\AppFramework\Http\TemplateResponse;
use \OCA\Richdocuments\AppConfig;
use \OCA\Richdocuments\Db; use \OCA\Richdocuments\Db;
use \OCA\Richdocuments\Helper; use \OCA\Richdocuments\Helper;
use \OCA\Richdocuments\Storage; use \OCA\Richdocuments\Storage;
@ -53,7 +54,7 @@ class DocumentController extends Controller {
private $logger; private $logger;
const ODT_TEMPLATE_PATH = '/assets/odttemplate.odt'; const ODT_TEMPLATE_PATH = '/assets/odttemplate.odt';
public function __construct($appName, IRequest $request, IConfig $settings, IConfig $appConfig, IL10N $l10n, $uid, ICacheFactory $cache, ILogger $logger){ public function __construct($appName, IRequest $request, IConfig $settings, AppConfig $appConfig, IL10N $l10n, $uid, ICacheFactory $cache, ILogger $logger){
parent::__construct($appName, $request); parent::__construct($appName, $request);
$this->uid = $uid; $this->uid = $uid;
$this->l10n = $l10n; $this->l10n = $l10n;

@ -13,8 +13,8 @@ namespace OCA\Richdocuments;
use \OCP\IConfig; use \OCP\IConfig;
class AppConfig{ class AppConfig{
private $appName = 'richdocuments'; private $appName = 'richdocuments';
private $defaults = [ private $defaults = [
'wopi_url' => 'https://localhost:9980' 'wopi_url' => 'https://localhost:9980'
]; ];
@ -73,4 +73,3 @@ use \OCP\IConfig;
return $this->config->setAppValue($userId, $this->appName, $key, $value); return $this->config->setAppValue($userId, $this->appName, $key, $value);
} }
} }

@ -31,7 +31,7 @@ class DocumentControllerTest extends \PHPUnit_Framework_TestCase {
->disableOriginalConstructor() ->disableOriginalConstructor()
->getMock() ->getMock()
; ;
$this->appConfig = $this->getMockBuilder('\OCP\IConfig') $this->appConfig = $this->getMockBuilder('\OCA\Richdocuments\AppConfig')
->disableOriginalConstructor() ->disableOriginalConstructor()
->getMock() ->getMock()
; ;

Loading…
Cancel
Save