Completed
Pull Request — master (#160)
by Sander
02:57
created
migration/serversideencryption.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
 		}
84 84
 	}
85 85
 
86
-	private function fetchAll($sql){
86
+	private function fetchAll($sql) {
87 87
 		return $this->db->executeQuery($sql)->fetchAll();
88 88
 	}
89 89
 
Please login to merge, or discard this patch.
lib/Service/EncryptService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 	 */
97 97
 	public function __construct(SettingsService $settings) {
98 98
 		$this->cipher = $settings->getAppSetting('server_side_encryption');
99
-		$this->rounds = (int)100;
99
+		$this->rounds = (int) 100;
100 100
 		$this->server_key = \OC::$server->getConfig()->getSystemValue('passwordsalt', '');
101 101
 	}
102 102
 
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
 
296 296
 
297 297
 
298
-	private function extractKeysFromCredential($credential){
298
+	private function extractKeysFromCredential($credential) {
299 299
 		$userKey = '';
300 300
 		$userSuppliedKey = '';
301 301
 		if ($credential instanceof Credential) {
Please login to merge, or discard this patch.