Completed
Pull Request — stable10 (#6492)
by Morris
11:41
created
apps/files_external/lib/Lib/Auth/Password/LoginCredentials.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
 		$this->credentialsManager->store($userId, self::CREDENTIALS_IDENTIFIER, $credentials);
76 76
 	}
77 77
 
78
-	public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) {
78
+	public function manipulateStorageConfig(StorageConfig & $storage, IUser $user = null) {
79 79
 		if (!isset($user)) {
80 80
 			throw new InsufficientDataForMeaningfulAnswerException('No login credentials saved');
81 81
 		}
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/Auth/Password/UserProvided.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 	}
62 62
 
63 63
 	private function getCredentialsIdentifier($storageId) {
64
-		return self::CREDENTIALS_IDENTIFIER_PREFIX . $storageId;
64
+		return self::CREDENTIALS_IDENTIFIER_PREFIX.$storageId;
65 65
 	}
66 66
 
67 67
 	public function saveBackendOptions(IUser $user, $id, array $options) {
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 		]);
72 72
 	}
73 73
 
74
-	public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) {
74
+	public function manipulateStorageConfig(StorageConfig & $storage, IUser $user = null) {
75 75
 		if (!isset($user)) {
76 76
 			throw new InsufficientDataForMeaningfulAnswerException('No credentials saved');
77 77
 		}
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/Auth/Password/GlobalAuth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
 		]);
71 71
 	}
72 72
 
73
-	public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) {
73
+	public function manipulateStorageConfig(StorageConfig & $storage, IUser $user = null) {
74 74
 		if ($storage->getType() === StorageConfig::MOUNT_TYPE_ADMIN) {
75 75
 			$uid = '';
76 76
 		} elseif (is_null($user)) {
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/Auth/PublicKey/RSA.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 		;
58 58
 	}
59 59
 
60
-	public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) {
60
+	public function manipulateStorageConfig(StorageConfig & $storage, IUser $user = null) {
61 61
 		$auth = new RSACrypt();
62 62
 		$auth->setPassword($this->config->getSystemValue('secret', ''));
63 63
 		if (!$auth->loadKey($storage->getBackendOption('private_key'))) {
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/Storage/StreamWrapper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,10 +47,10 @@
 block discarded – undo
47 47
 				return false;
48 48
 			}
49 49
 			while (($file = readdir($dh)) !== false) {
50
-				if ($this->is_dir($path . '/' . $file)) {
51
-					$this->rmdir($path . '/' . $file);
50
+				if ($this->is_dir($path.'/'.$file)) {
51
+					$this->rmdir($path.'/'.$file);
52 52
 				} else {
53
-					$this->unlink($path . '/' . $file);
53
+					$this->unlink($path.'/'.$file);
54 54
 				}
55 55
 			}
56 56
 			$url = $this->constructUrl($path);
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/Storage/OwnCloud.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
  * http://%host/%context/remote.php/webdav/%root
32 32
  *
33 33
  */
34
-class OwnCloud extends \OC\Files\Storage\DAV{
34
+class OwnCloud extends \OC\Files\Storage\DAV {
35 35
 	const OC_URL_SUFFIX = 'remote.php/webdav';
36 36
 
37 37
 	public function __construct($params) {
@@ -48,27 +48,27 @@  discard block
 block discarded – undo
48 48
 		}
49 49
 		$contextPath = '';
50 50
 		$hostSlashPos = strpos($host, '/');
51
-		if ($hostSlashPos !== false){
51
+		if ($hostSlashPos !== false) {
52 52
 			$contextPath = substr($host, $hostSlashPos);
53 53
 			$host = substr($host, 0, $hostSlashPos);
54 54
 		}
55 55
 
56
-		if (substr($contextPath, -1) !== '/'){
56
+		if (substr($contextPath, -1) !== '/') {
57 57
 			$contextPath .= '/';
58 58
 		}
59 59
 
60
-		if (isset($params['root'])){
60
+		if (isset($params['root'])) {
61 61
 			$root = $params['root'];
62
-			if (substr($root, 0, 1) !== '/'){
63
-				$root = '/' . $root;
62
+			if (substr($root, 0, 1) !== '/') {
63
+				$root = '/'.$root;
64 64
 			}
65 65
 		}
66
-		else{
66
+		else {
67 67
 			$root = '/';
68 68
 		}
69 69
 
70 70
 		$params['host'] = $host;
71
-		$params['root'] = $contextPath . self::OC_URL_SUFFIX . $root;
71
+		$params['root'] = $contextPath.self::OC_URL_SUFFIX.$root;
72 72
 
73 73
 		parent::__construct($params);
74 74
 	}
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/StorageModifierTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 	 * @throws InsufficientDataForMeaningfulAnswerException
52 52
 	 * @throws StorageNotAvailableException
53 53
 	 */
54
-	public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) {
54
+	public function manipulateStorageConfig(StorageConfig & $storage, IUser $user = null) {
55 55
 	}
56 56
 
57 57
 	/**
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/StorageConfig.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
 	 * @param Backend $backend
183 183
 	 */
184 184
 	public function setBackend(Backend $backend) {
185
-		$this->backend= $backend;
185
+		$this->backend = $backend;
186 186
 	}
187 187
 
188 188
 	/**
@@ -214,13 +214,13 @@  discard block
 block discarded – undo
214 214
 	 * @param array $backendOptions backend options
215 215
 	 */
216 216
 	public function setBackendOptions($backendOptions) {
217
-		if($this->getBackend() instanceof  Backend) {
217
+		if ($this->getBackend() instanceof  Backend) {
218 218
 			$parameters = $this->getBackend()->getParameters();
219
-			foreach($backendOptions as $key => $value) {
220
-				if(isset($parameters[$key])) {
219
+			foreach ($backendOptions as $key => $value) {
220
+				if (isset($parameters[$key])) {
221 221
 					switch ($parameters[$key]->getType()) {
222 222
 						case \OCA\Files_External\Lib\DefinitionParameter::VALUE_BOOLEAN:
223
-							$value = (bool)$value;
223
+							$value = (bool) $value;
224 224
 							break;
225 225
 					}
226 226
 					$backendOptions[$key] = $value;
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
 			$result['statusMessage'] = $this->statusMessage;
427 427
 		}
428 428
 		$result['userProvided'] = $this->authMechanism instanceof IUserProvided;
429
-		$result['type'] = ($this->getType() === self::MOUNT_TYPE_PERSONAl) ? 'personal': 'system';
429
+		$result['type'] = ($this->getType() === self::MOUNT_TYPE_PERSONAl) ? 'personal' : 'system';
430 430
 		return $result;
431 431
 	}
432 432
 }
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/Backend/SMB.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 	 * @param StorageConfig $storage
61 61
 	 * @param IUser $user
62 62
 	 */
63
-	public function manipulateStorageConfig(StorageConfig &$storage, IUser $user = null) {
63
+	public function manipulateStorageConfig(StorageConfig & $storage, IUser $user = null) {
64 64
 		$user = $storage->getBackendOption('user');
65 65
 		if ($domain = $storage->getBackendOption('domain')) {
66 66
 			$storage->setBackendOption('user', $domain.'\\'.$user);
Please login to merge, or discard this patch.