@@ -68,7 +68,7 @@ |
||
| 68 | 68 | try { |
| 69 | 69 | $mount = $this->globalService->getStorage($mountId); |
| 70 | 70 | } catch (NotFoundException $e) { |
| 71 | - $output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
| 71 | + $output->writeln('<error>Mount with id "'.$mountId.' not found, check "occ files_external:list" to get available mounts"</error>'); |
|
| 72 | 72 | return 404; |
| 73 | 73 | } |
| 74 | 74 | |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | return 1; |
| 121 | 121 | } |
| 122 | 122 | if (!$storage instanceof INotifyStorage) { |
| 123 | - $output->writeln('<error>Mount of type "' . $mount->getBackend()->getText() . '" does not support active update notifications</error>'); |
|
| 123 | + $output->writeln('<error>Mount of type "'.$mount->getBackend()->getText().'" does not support active update notifications</error>'); |
|
| 124 | 124 | return 1; |
| 125 | 125 | } |
| 126 | 126 | |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | $path = trim($input->getOption('path'), '/'); |
| 130 | 130 | $notifyHandler = $storage->notify($path); |
| 131 | 131 | $this->selfTest($storage, $notifyHandler, $verbose, $output); |
| 132 | - $notifyHandler->listen(function (IChange $change) use ($mount, $verbose, $output) { |
|
| 132 | + $notifyHandler->listen(function(IChange $change) use ($mount, $verbose, $output) { |
|
| 133 | 133 | if ($verbose) { |
| 134 | 134 | $this->logUpdate($change, $output); |
| 135 | 135 | } |
@@ -171,9 +171,9 @@ discard block |
||
| 171 | 171 | return; |
| 172 | 172 | } |
| 173 | 173 | |
| 174 | - $text .= ' ' . $change->getPath(); |
|
| 174 | + $text .= ' '.$change->getPath(); |
|
| 175 | 175 | if ($change instanceof IRenameChange) { |
| 176 | - $text .= ' to ' . $change->getTargetPath(); |
|
| 176 | + $text .= ' to '.$change->getTargetPath(); |
|
| 177 | 177 | } |
| 178 | 178 | |
| 179 | 179 | $output->writeln($text); |
@@ -71,14 +71,14 @@ discard block |
||
| 71 | 71 | $backend = $input->getArgument('backend'); |
| 72 | 72 | if ($type) { |
| 73 | 73 | if (!isset($data[$type])) { |
| 74 | - $output->writeln('<error>Invalid type "' . $type . '". Possible values are "authentication" or "storage"</error>'); |
|
| 74 | + $output->writeln('<error>Invalid type "'.$type.'". Possible values are "authentication" or "storage"</error>'); |
|
| 75 | 75 | return 1; |
| 76 | 76 | } |
| 77 | 77 | $data = $data[$type]; |
| 78 | 78 | |
| 79 | 79 | if ($backend) { |
| 80 | 80 | if (!isset($data[$backend])) { |
| 81 | - $output->writeln('<error>Unknown backend "' . $backend . '" of type "' . $type . '"</error>'); |
|
| 81 | + $output->writeln('<error>Unknown backend "'.$backend.'" of type "'.$type.'"</error>'); |
|
| 82 | 82 | return 1; |
| 83 | 83 | } |
| 84 | 84 | $data = $data[$backend]; |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | $result['storage_class'] = $backend->getStorageClass(); |
| 100 | 100 | $authBackends = $this->backendService->getAuthMechanismsByScheme(array_keys($backend->getAuthSchemes())); |
| 101 | 101 | $result['supported_authentication_backends'] = array_keys($authBackends); |
| 102 | - $authConfig = array_map(function (AuthMechanism $auth) { |
|
| 102 | + $authConfig = array_map(function(AuthMechanism $auth) { |
|
| 103 | 103 | return $this->serializeAuthBackend($auth)['configuration']; |
| 104 | 104 | }, $authBackends); |
| 105 | 105 | $result['authentication_configuration'] = array_combine(array_keys($authBackends), $authConfig); |
@@ -112,10 +112,10 @@ discard block |
||
| 112 | 112 | * @return string[] |
| 113 | 113 | */ |
| 114 | 114 | private function formatConfiguration(array $parameters) { |
| 115 | - $configuration = array_filter($parameters, function (DefinitionParameter $parameter) { |
|
| 115 | + $configuration = array_filter($parameters, function(DefinitionParameter $parameter) { |
|
| 116 | 116 | return $parameter->getType() !== DefinitionParameter::VALUE_HIDDEN; |
| 117 | 117 | }); |
| 118 | - return array_map(function (DefinitionParameter $parameter) { |
|
| 118 | + return array_map(function(DefinitionParameter $parameter) { |
|
| 119 | 119 | return $parameter->getTypeName(); |
| 120 | 120 | }, $configuration); |
| 121 | 121 | } |
@@ -140,7 +140,7 @@ |
||
| 140 | 140 | * @return bool |
| 141 | 141 | */ |
| 142 | 142 | public function isFlagSet($flag) { |
| 143 | - return (bool)($this->flags & $flag); |
|
| 143 | + return (bool) ($this->flags & $flag); |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
@@ -47,10 +47,10 @@ |
||
| 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); |
@@ -64,7 +64,7 @@ |
||
| 64 | 64 | |
| 65 | 65 | public function listen(callable $callback) { |
| 66 | 66 | $oldRenamePath = null; |
| 67 | - $this->shareNotifyHandler->listen(function (\Icewind\SMB\Change $shareChange) use ($callback) { |
|
| 67 | + $this->shareNotifyHandler->listen(function(\Icewind\SMB\Change $shareChange) use ($callback) { |
|
| 68 | 68 | $change = $this->mapChange($shareChange); |
| 69 | 69 | if (!is_null($change)) { |
| 70 | 70 | return $callback($change); |
@@ -182,7 +182,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -18,14 +18,14 @@ |
||
| 18 | 18 | <tr> |
| 19 | 19 | <th id='headerName' class="hidden column-name"> |
| 20 | 20 | <div id="headerName-container"> |
| 21 | - <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a> |
|
| 21 | + <a class="name sort columntitle" data-sort="name"><span><?php p($l->t('Name')); ?></span><span class="sort-indicator"></span></a> |
|
| 22 | 22 | </div> |
| 23 | 23 | </th> |
| 24 | 24 | <th id="headerSize" class="hidden column-size"> |
| 25 | 25 | <a class="size sort columntitle" data-sort="size"><span><?php p($l->t('Size')); ?></span><span class="sort-indicator"></span></a> |
| 26 | 26 | </th> |
| 27 | 27 | <th id="headerDate" class="hidden column-mtime"> |
| 28 | - <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Modified' )); ?></span><span class="sort-indicator"></span></a> |
|
| 28 | + <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t('Modified')); ?></span><span class="sort-indicator"></span></a> |
|
| 29 | 29 | </th> |
| 30 | 30 | </tr> |
| 31 | 31 | </thead> |
@@ -279,7 +279,7 @@ |
||
| 279 | 279 | if ($tagData === null) { |
| 280 | 280 | list($name, $status) = explode('|||', substr($parameter, 3, -3)); |
| 281 | 281 | $tagData = [ |
| 282 | - 'id' => 0,// No way to recover the ID |
|
| 282 | + 'id' => 0, // No way to recover the ID |
|
| 283 | 283 | 'name' => $name, |
| 284 | 284 | 'assignable' => $status === 'assignable', |
| 285 | 285 | 'visible' => $status !== 'invisible', |