@@ -62,7 +62,7 @@ |
||
62 | 62 | */ |
63 | 63 | public function addEntityCollection(string $name, \Closure $entityExistsFunction) { |
64 | 64 | if (isset($this->collections[$name])) { |
65 | - throw new \OutOfBoundsException('Duplicate entity name "' . $name . '"'); |
|
65 | + throw new \OutOfBoundsException('Duplicate entity name "'.$name.'"'); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | $this->collections[$name] = $entityExistsFunction; |
@@ -63,5 +63,5 @@ |
||
63 | 63 | * @return bool Whether $hash is a valid hash of $message |
64 | 64 | * @since 8.0.0 |
65 | 65 | */ |
66 | - public function verify(string $message, string $hash, &$newHash = null): bool ; |
|
66 | + public function verify(string $message, string $hash, &$newHash = null): bool; |
|
67 | 67 | } |
@@ -67,6 +67,6 @@ |
||
67 | 67 | $implements |= Backend::COUNT_USERS; |
68 | 68 | } |
69 | 69 | |
70 | - return (bool)($actions & $implements); |
|
70 | + return (bool) ($actions & $implements); |
|
71 | 71 | } |
72 | 72 | } |
@@ -62,6 +62,6 @@ |
||
62 | 62 | $implements |= GroupInterface::REMOVE_FROM_GOUP; |
63 | 63 | } |
64 | 64 | |
65 | - return (bool)($actions & $implements); |
|
65 | + return (bool) ($actions & $implements); |
|
66 | 66 | } |
67 | 67 | } |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | array $params, |
51 | 51 | array $elements, |
52 | 52 | bool $obfuscateParameters = false) { |
53 | - foreach($elements as $element) { |
|
54 | - if(!isset($params[$element])) { |
|
53 | + foreach ($elements as $element) { |
|
54 | + if (!isset($params[$element])) { |
|
55 | 55 | if ($obfuscateParameters) { |
56 | 56 | $this->logger->critical( |
57 | 57 | '$params["'.$element.'"] was missing.', |
@@ -71,8 +71,8 @@ discard block |
||
71 | 71 | } |
72 | 72 | |
73 | 73 | $replaceArray = []; |
74 | - foreach($elements as $element) { |
|
75 | - if($params[$element] instanceof \DateTime) { |
|
74 | + foreach ($elements as $element) { |
|
75 | + if ($params[$element] instanceof \DateTime) { |
|
76 | 76 | $params[$element] = $params[$element]->format('Y-m-d H:i:s'); |
77 | 77 | } |
78 | 78 | $replaceArray[] = $params[$element]; |
@@ -62,11 +62,11 @@ discard block |
||
62 | 62 | public function getApps(string $filter = null): DataResponse { |
63 | 63 | $apps = (new OC_App())->listAllApps(); |
64 | 64 | $list = []; |
65 | - foreach($apps as $app) { |
|
65 | + foreach ($apps as $app) { |
|
66 | 66 | $list[] = $app['id']; |
67 | 67 | } |
68 | - if($filter){ |
|
69 | - switch($filter){ |
|
68 | + if ($filter) { |
|
69 | + switch ($filter) { |
|
70 | 70 | case 'enabled': |
71 | 71 | return new DataResponse(['apps' => \OC_App::getEnabledApps()]); |
72 | 72 | break; |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | */ |
92 | 92 | public function getAppInfo(string $app): DataResponse { |
93 | 93 | $info = \OCP\App::getAppInfo($app); |
94 | - if(!is_null($info)) { |
|
94 | + if (!is_null($info)) { |
|
95 | 95 | return new DataResponse(OC_App::getAppInfo($app)); |
96 | 96 | } |
97 | 97 |
@@ -99,7 +99,7 @@ |
||
99 | 99 | $user = $this->userSession->getUser()->getUID(); |
100 | 100 | |
101 | 101 | $mounts = \OC_Mount_Config::getAbsoluteMountPoints($user); |
102 | - foreach($mounts as $mountPoint => $mount) { |
|
102 | + foreach ($mounts as $mountPoint => $mount) { |
|
103 | 103 | $entries[] = $this->formatMount($mountPoint, $mount); |
104 | 104 | } |
105 | 105 |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | // interpolate $message as defined in PSR-3 |
211 | 211 | $replace = []; |
212 | 212 | foreach ($context as $key => $val) { |
213 | - $replace['{' . $key . '}'] = $val; |
|
213 | + $replace['{'.$key.'}'] = $val; |
|
214 | 214 | } |
215 | 215 | $message = strtr($message, $replace); |
216 | 216 | |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | } |
318 | 318 | |
319 | 319 | public function getLogPath():string { |
320 | - if($this->logger instanceof IFileBased) { |
|
320 | + if ($this->logger instanceof IFileBased) { |
|
321 | 321 | return $this->logger->getLogFilePath(); |
322 | 322 | } |
323 | 323 | throw new \RuntimeException('Log implementation has no path'); |
@@ -121,13 +121,13 @@ discard block |
||
121 | 121 | public function search(string $search = '', string $itemType = null, int $page = 1, int $perPage = 200, $shareType = null, bool $lookup = true): DataResponse { |
122 | 122 | |
123 | 123 | // only search for string larger than a given threshold |
124 | - $threshold = (int)$this->config->getSystemValue('sharing.minSearchStringLength', 0); |
|
124 | + $threshold = (int) $this->config->getSystemValue('sharing.minSearchStringLength', 0); |
|
125 | 125 | if (strlen($search) < $threshold) { |
126 | 126 | return new DataResponse($this->result); |
127 | 127 | } |
128 | 128 | |
129 | 129 | // never return more than the max. number of results configured in the config.php |
130 | - $maxResults = (int)$this->config->getSystemValue('sharing.maxAutocompleteResults', 0); |
|
130 | + $maxResults = (int) $this->config->getSystemValue('sharing.maxAutocompleteResults', 0); |
|
131 | 131 | if ($maxResults > 0) { |
132 | 132 | $perPage = min($perPage, $maxResults); |
133 | 133 | } |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | list($result, $hasMoreResults) = $this->collaboratorSearch->search($search, $shareTypes, $lookup, $this->limit, $this->offset); |
183 | 183 | |
184 | 184 | // extra treatment for 'exact' subarray, with a single merge expected keys might be lost |
185 | - if(isset($result['exact'])) { |
|
185 | + if (isset($result['exact'])) { |
|
186 | 186 | $result['exact'] = array_merge($this->result['exact'], $result['exact']); |
187 | 187 | } |
188 | 188 | $this->result = array_merge($this->result, $result); |
@@ -226,12 +226,12 @@ discard block |
||
226 | 226 | */ |
227 | 227 | protected function getPaginationLink(int $page, array $params): string { |
228 | 228 | if ($this->isV2()) { |
229 | - $url = $this->urlGenerator->getAbsoluteURL('/ocs/v2.php/apps/files_sharing/api/v1/sharees') . '?'; |
|
229 | + $url = $this->urlGenerator->getAbsoluteURL('/ocs/v2.php/apps/files_sharing/api/v1/sharees').'?'; |
|
230 | 230 | } else { |
231 | - $url = $this->urlGenerator->getAbsoluteURL('/ocs/v1.php/apps/files_sharing/api/v1/sharees') . '?'; |
|
231 | + $url = $this->urlGenerator->getAbsoluteURL('/ocs/v1.php/apps/files_sharing/api/v1/sharees').'?'; |
|
232 | 232 | } |
233 | 233 | $params['page'] = $page + 1; |
234 | - return '<' . $url . http_build_query($params) . '>; rel="next"'; |
|
234 | + return '<'.$url.http_build_query($params).'>; rel="next"'; |
|
235 | 235 | } |
236 | 236 | |
237 | 237 | /** |