Completed
Pull Request — master (#154)
by Sander
02:17
created
lib/Service/SettingsService.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 	 * @param $value mixed Value of the setting
98 98
 	 */
99 99
 
100
-	public function setUserSetting($key, $value){
100
+	public function setUserSetting($key, $value) {
101 101
 		return $this->config->setUserValue($this->userId, $this->appName, $key, $value);
102 102
 	}
103 103
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 	 * @param $setting
108 108
 	 * @return bool
109 109
 	 */
110
-	public function isEnabled($setting){
110
+	public function isEnabled($setting) {
111 111
 		$value = intval($this->config->getAppValue('passman', $setting, false));
112 112
 		return ($value === 1);
113 113
 	}
Please login to merge, or discard this patch.