@@ -76,6 +76,6 @@ |
||
76 | 76 | $journal_level = $this->levels[$level]; |
77 | 77 | sd_journal_send('PRIORITY='.$journal_level, |
78 | 78 | 'SYSLOG_IDENTIFIER='.$this->syslogId, |
79 | - 'MESSAGE=' . $this->logDetailsAsJSON($app, $message, $level)); |
|
79 | + 'MESSAGE='.$this->logDetailsAsJSON($app, $message, $level)); |
|
80 | 80 | } |
81 | 81 | } |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | |
105 | 105 | $this->remove(true); |
106 | 106 | $type = $this->getAvatarImageType($img); |
107 | - $file = $this->folder->newFile('avatar.' . $type); |
|
107 | + $file = $this->folder->newFile('avatar.'.$type); |
|
108 | 108 | $file->putContent($data); |
109 | 109 | |
110 | 110 | try { |
@@ -257,9 +257,9 @@ discard block |
||
257 | 257 | } |
258 | 258 | |
259 | 259 | if ($size === -1) { |
260 | - $path = 'avatar.' . $ext; |
|
260 | + $path = 'avatar.'.$ext; |
|
261 | 261 | } else { |
262 | - $path = 'avatar.' . $size . '.' . $ext; |
|
262 | + $path = 'avatar.'.$size.'.'.$ext; |
|
263 | 263 | } |
264 | 264 | |
265 | 265 | try { |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | } |
276 | 276 | } else { |
277 | 277 | $avatar = new OC_Image(); |
278 | - $file = $this->folder->getFile('avatar.' . $ext); |
|
278 | + $file = $this->folder->getFile('avatar.'.$ext); |
|
279 | 279 | $avatar->loadFromData($file->getContent()); |
280 | 280 | $avatar->resize($size); |
281 | 281 | $data = $avatar->data(); |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | $file = $this->folder->newFile($path); |
286 | 286 | $file->putContent($data); |
287 | 287 | } catch (NotPermittedException $e) { |
288 | - $this->logger->error('Failed to save avatar for ' . $this->user->getUID()); |
|
288 | + $this->logger->error('Failed to save avatar for '.$this->user->getUID()); |
|
289 | 289 | throw new NotFoundException(); |
290 | 290 | } |
291 | 291 | } |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | */ |
145 | 145 | public function getKey(IUser $user): Key { |
146 | 146 | $uid = $user->getUID(); |
147 | - return $this->retrieveKey('user-' . $uid); |
|
147 | + return $this->retrieveKey('user-'.$uid); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | /** |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | if ($instanceId === null) { |
159 | 159 | throw new \RuntimeException('no instance id!'); |
160 | 160 | } |
161 | - return $this->retrieveKey('system-' . $instanceId); |
|
161 | + return $this->retrieveKey('system-'.$instanceId); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | private function logOpensslError(): void { |
@@ -166,6 +166,6 @@ discard block |
||
166 | 166 | while ($error = openssl_error_string()) { |
167 | 167 | $errors[] = $error; |
168 | 168 | } |
169 | - $this->logger->critical('Something is wrong with your openssl setup: ' . implode(', ', $errors)); |
|
169 | + $this->logger->critical('Something is wrong with your openssl setup: '.implode(', ', $errors)); |
|
170 | 170 | } |
171 | 171 | } |
@@ -57,7 +57,7 @@ |
||
57 | 57 | public function getEncryptedValue(): string { |
58 | 58 | if ($this->encryptedValue === '') { |
59 | 59 | $sharedSecret = random_bytes(\strlen($this->value)); |
60 | - $this->encryptedValue = base64_encode($this->value ^ $sharedSecret) . ':' . base64_encode($sharedSecret); |
|
60 | + $this->encryptedValue = base64_encode($this->value ^ $sharedSecret).':'.base64_encode($sharedSecret); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | return $this->encryptedValue; |
@@ -74,7 +74,7 @@ |
||
74 | 74 | */ |
75 | 75 | public function mergePolicies(ContentSecurityPolicy $defaultPolicy, |
76 | 76 | EmptyContentSecurityPolicy $originalPolicy): ContentSecurityPolicy { |
77 | - foreach ((object)(array)$originalPolicy as $name => $value) { |
|
77 | + foreach ((object) (array) $originalPolicy as $name => $value) { |
|
78 | 78 | $setter = 'set'.ucfirst($name); |
79 | 79 | if (\is_array($value)) { |
80 | 80 | $getter = 'get'.ucfirst($name); |
@@ -96,14 +96,14 @@ discard block |
||
96 | 96 | $alg = $this->getPrefferedAlgorithm(); |
97 | 97 | |
98 | 98 | if (\defined('PASSWORD_ARGON2ID') && $alg === PASSWORD_ARGON2ID) { |
99 | - return 3 . '|' . password_hash($message, PASSWORD_ARGON2ID, $this->options); |
|
99 | + return 3.'|'.password_hash($message, PASSWORD_ARGON2ID, $this->options); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | if (\defined('PASSWORD_ARGON2I') && $alg === PASSWORD_ARGON2I) { |
103 | - return 2 . '|' . password_hash($message, PASSWORD_ARGON2I, $this->options); |
|
103 | + return 2.'|'.password_hash($message, PASSWORD_ARGON2I, $this->options); |
|
104 | 104 | } |
105 | 105 | |
106 | - return 1 . '|' . password_hash($message, PASSWORD_BCRYPT, $this->options); |
|
106 | + return 1.'|'.password_hash($message, PASSWORD_BCRYPT, $this->options); |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | /** |
@@ -114,8 +114,8 @@ discard block |
||
114 | 114 | protected function splitHash(string $prefixedHash) { |
115 | 115 | $explodedString = explode('|', $prefixedHash, 2); |
116 | 116 | if (\count($explodedString) === 2) { |
117 | - if ((int)$explodedString[0] > 0) { |
|
118 | - return ['version' => (int)$explodedString[0], 'hash' => $explodedString[1]]; |
|
117 | + if ((int) $explodedString[0] > 0) { |
|
118 | + return ['version' => (int) $explodedString[0], 'hash' => $explodedString[1]]; |
|
119 | 119 | } |
120 | 120 | } |
121 | 121 |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | |
121 | 121 | $result = $this->entries; |
122 | 122 | if ($type !== 'all') { |
123 | - $result = array_filter($this->entries, function ($entry) use ($type) { |
|
123 | + $result = array_filter($this->entries, function($entry) use ($type) { |
|
124 | 124 | return $entry['type'] === $type; |
125 | 125 | }); |
126 | 126 | } |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | * @return array |
136 | 136 | */ |
137 | 137 | private function proceedNavigation(array $list): array { |
138 | - uasort($list, function ($a, $b) { |
|
138 | + uasort($list, function($a, $b) { |
|
139 | 139 | if (isset($a['order']) && isset($b['order'])) { |
140 | 140 | return ($a['order'] < $b['order']) ? -1 : 1; |
141 | 141 | } elseif (isset($a['order']) || isset($b['order'])) { |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | continue; |
289 | 289 | } |
290 | 290 | $l = $this->l10nFac->get($app); |
291 | - $id = $nav['id'] ?? $app . ($key === 0 ? '' : $key); |
|
291 | + $id = $nav['id'] ?? $app.($key === 0 ? '' : $key); |
|
292 | 292 | $order = isset($nav['order']) ? $nav['order'] : 100; |
293 | 293 | $type = isset($nav['type']) ? $nav['type'] : 'link'; |
294 | 294 | $route = $nav['route'] !== '' ? $this->urlGenerator->linkToRoute($nav['route']) : ''; |
@@ -99,7 +99,7 @@ |
||
99 | 99 | $emailAddressType = $emailAddressData['type']; |
100 | 100 | } |
101 | 101 | if (isset($contact['FN'])) { |
102 | - $displayName = $contact['FN'] . ' (' . $emailAddress . ')'; |
|
102 | + $displayName = $contact['FN'].' ('.$emailAddress.')'; |
|
103 | 103 | } |
104 | 104 | $exactEmailMatch = strtolower($emailAddress) === $lowerSearch; |
105 | 105 |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $request = $this->prepareRequest($request, $credentials); |
65 | 65 | $stringToSign = $this->createCanonicalizedString($request); |
66 | 66 | $auth = 'AWS ' |
67 | - . $credentials->getAccessKeyId() . ':' |
|
67 | + . $credentials->getAccessKeyId().':' |
|
68 | 68 | . $this->signString($stringToSign, $credentials); |
69 | 69 | |
70 | 70 | return $request->withHeader('Authorization', $auth); |
@@ -148,11 +148,11 @@ discard block |
||
148 | 148 | RequestInterface $request, |
149 | 149 | $expires = null |
150 | 150 | ) { |
151 | - $buffer = $request->getMethod() . "\n"; |
|
151 | + $buffer = $request->getMethod()."\n"; |
|
152 | 152 | |
153 | 153 | // Add the interesting headers |
154 | 154 | foreach ($this->signableHeaders as $header) { |
155 | - $buffer .= $request->getHeaderLine($header) . "\n"; |
|
155 | + $buffer .= $request->getHeaderLine($header)."\n"; |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | $date = $expires ?: $request->getHeaderLine('date'); |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | if (strpos($name, 'x-amz-') === 0) { |
171 | 171 | $value = implode(',', $header); |
172 | 172 | if (strlen($value) > 0) { |
173 | - $headers[$name] = $name . ':' . $value; |
|
173 | + $headers[$name] = $name.':'.$value; |
|
174 | 174 | } |
175 | 175 | } |
176 | 176 | } |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | |
182 | 182 | ksort($headers); |
183 | 183 | |
184 | - return implode("\n", $headers) . "\n"; |
|
184 | + return implode("\n", $headers)."\n"; |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | private function createCanonicalizedResource(RequestInterface $request) { |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | if ($data['bucket']) { |
192 | 192 | $buffer .= $data['bucket']; |
193 | 193 | if (!empty($data['key']) || !$data['path_style']) { |
194 | - $buffer .= '/' . $data['key']; |
|
194 | + $buffer .= '/'.$data['key']; |
|
195 | 195 | } |
196 | 196 | } |
197 | 197 |