Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2018-10-02 10:39:12 +0300
committerMaxence Lange <maxence@artificial-owl.com>2018-10-02 10:39:12 +0300
commit22883df10ec9fa8d8a1f5ebfb5c0ee65c63af6ed (patch)
tree94219ead8662e0d9353da56f3ab2dba9bc36223e
parent312261070b097daa48dfc6c7f26402e87b58fe3d (diff)
cleaning
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
-rw-r--r--lib/Service/SettingsService.php14
1 files changed, 2 insertions, 12 deletions
diff --git a/lib/Service/SettingsService.php b/lib/Service/SettingsService.php
index f32f38e..7d4373a 100644
--- a/lib/Service/SettingsService.php
+++ b/lib/Service/SettingsService.php
@@ -31,12 +31,6 @@ use OCP\IConfig;
class SettingsService {
- /** @var IConfig */
- private $config;
-
- /** @var string */
- private $userId;
-
/** @var PlatformService */
private $platformService;
@@ -47,20 +41,16 @@ class SettingsService {
private $miscService;
/**
- * ConfigService constructor.
+ * SettingsService constructor.
*
- * @param IConfig $config
- * @param string $userId
* @param PlatformService $platformService
* @param ProviderService $providerService
* @param MiscService $miscService
*/
public function __construct(
- IConfig $config, $userId, PlatformService $platformService, ProviderService $providerService,
+ PlatformService $platformService, ProviderService $providerService,
MiscService $miscService
) {
- $this->config = $config;
- $this->userId = $userId;
$this->platformService = $platformService;
$this->providerService = $providerService;
$this->miscService = $miscService;