aboutsummaryrefslogtreecommitdiffstats
path: root/apps/testing/lib/Controller/ConfigController.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/testing/lib/Controller/ConfigController.php')
-rw-r--r--apps/testing/lib/Controller/ConfigController.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/testing/lib/Controller/ConfigController.php b/apps/testing/lib/Controller/ConfigController.php
index 7cd27b7ab58..36cc4fff9aa 100644
--- a/apps/testing/lib/Controller/ConfigController.php
+++ b/apps/testing/lib/Controller/ConfigController.php
@@ -13,19 +13,17 @@ use OCP\IRequest;
class ConfigController extends OCSController {
- /** @var IConfig */
- private $config;
-
/**
* @param string $appName
* @param IRequest $request
* @param IConfig $config
*/
- public function __construct($appName,
+ public function __construct(
+ $appName,
IRequest $request,
- IConfig $config) {
+ private IConfig $config,
+ ) {
parent::__construct($appName, $request);
- $this->config = $config;
}
/**