@@ -155,7 +155,7 @@ |
||
155 | 155 | } |
156 | 156 | |
157 | 157 | public function supportedEntities(): array { |
158 | - return [ File::class ]; |
|
158 | + return [File::class]; |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | public function isAvailableForScope(int $scope): bool { |
@@ -106,12 +106,12 @@ |
||
106 | 106 | } |
107 | 107 | |
108 | 108 | return [ |
109 | - 'providers' => array_map(function (IProvidesPersonalSettings $provider) use ($user) { |
|
109 | + 'providers' => array_map(function(IProvidesPersonalSettings $provider) use ($user) { |
|
110 | 110 | return [ |
111 | 111 | 'provider' => $provider, |
112 | 112 | 'settings' => $provider->getPersonalSettings($user) |
113 | 113 | ]; |
114 | - }, array_filter($this->providerLoader->getProviders($user), function (IProvider $provider) { |
|
114 | + }, array_filter($this->providerLoader->getProviders($user), function(IProvider $provider) { |
|
115 | 115 | return $provider instanceof IProvidesPersonalSettings; |
116 | 116 | })) |
117 | 117 | ]; |
@@ -50,7 +50,7 @@ |
||
50 | 50 | * @return ILinkAction |
51 | 51 | */ |
52 | 52 | public function newEMailAction($icon, $name, $email) { |
53 | - return $this->newLinkAction($icon, $name, 'mailto:' . $email); |
|
53 | + return $this->newLinkAction($icon, $name, 'mailto:'.$email); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | } |
@@ -57,17 +57,17 @@ |
||
57 | 57 | |
58 | 58 | try { |
59 | 59 | $jobStartTime = time(); |
60 | - $logger->debug('Run ' . get_class($this) . ' job with ID ' . $this->getId(), ['app' => 'cron']); |
|
60 | + $logger->debug('Run '.get_class($this).' job with ID '.$this->getId(), ['app' => 'cron']); |
|
61 | 61 | $this->run($this->argument); |
62 | 62 | $timeTaken = time() - $jobStartTime; |
63 | 63 | |
64 | - $logger->debug('Finished ' . get_class($this) . ' job with ID ' . $this->getId() . ' in ' . $timeTaken . ' seconds', ['app' => 'cron']); |
|
64 | + $logger->debug('Finished '.get_class($this).' job with ID '.$this->getId().' in '.$timeTaken.' seconds', ['app' => 'cron']); |
|
65 | 65 | $jobList->setExecutionTime($this, $timeTaken); |
66 | 66 | } catch (\Throwable $e) { |
67 | 67 | if ($logger) { |
68 | 68 | $logger->logException($e, [ |
69 | 69 | 'app' => 'core', |
70 | - 'message' => 'Error while running background job (class: ' . get_class($this) . ', arguments: ' . print_r($this->argument, true) . ')' |
|
70 | + 'message' => 'Error while running background job (class: '.get_class($this).', arguments: '.print_r($this->argument, true).')' |
|
71 | 71 | ]); |
72 | 72 | } |
73 | 73 | } |
@@ -90,12 +90,12 @@ discard block |
||
90 | 90 | $destinationUserObject = $this->userManager->get($input->getArgument('destination-user')); |
91 | 91 | |
92 | 92 | if (!$sourceUserObject instanceof IUser) { |
93 | - $output->writeln("<error>Unknown source user " . $input->getArgument('source-user') . "</error>"); |
|
93 | + $output->writeln("<error>Unknown source user ".$input->getArgument('source-user')."</error>"); |
|
94 | 94 | return 1; |
95 | 95 | } |
96 | 96 | |
97 | 97 | if (!$destinationUserObject instanceof IUser) { |
98 | - $output->writeln("<error>Unknown destination user " . $input->getArgument('destination-user') . "</error>"); |
|
98 | + $output->writeln("<error>Unknown destination user ".$input->getArgument('destination-user')."</error>"); |
|
99 | 99 | return 1; |
100 | 100 | } |
101 | 101 | |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | $input->getOption('move') === true |
109 | 109 | ); |
110 | 110 | } catch (TransferOwnershipException $e) { |
111 | - $output->writeln("<error>" . $e->getMessage() . "</error>"); |
|
111 | + $output->writeln("<error>".$e->getMessage()."</error>"); |
|
112 | 112 | return $e->getCode() !== 0 ? $e->getCode() : 1; |
113 | 113 | } |
114 | 114 |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | 'targetUser' => $recipient, |
113 | 113 | 'nodeName' => $node->getName(), |
114 | 114 | ]) |
115 | - ->setObject('transfer', (string)$transferOwnership->getId()); |
|
115 | + ->setObject('transfer', (string) $transferOwnership->getId()); |
|
116 | 116 | |
117 | 117 | $this->notificationManager->notify($notification); |
118 | 118 | |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | |
136 | 136 | $notification = $this->notificationManager->createNotification(); |
137 | 137 | $notification->setApp('files') |
138 | - ->setObject('transfer', (string)$id); |
|
138 | + ->setObject('transfer', (string) $id); |
|
139 | 139 | $this->notificationManager->markProcessed($notification); |
140 | 140 | |
141 | 141 | $newTransferOwnership = new TransferOwnershipEntity(); |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | |
169 | 169 | $notification = $this->notificationManager->createNotification(); |
170 | 170 | $notification->setApp('files') |
171 | - ->setObject('transfer', (string)$id); |
|
171 | + ->setObject('transfer', (string) $id); |
|
172 | 172 | $this->notificationManager->markProcessed($notification); |
173 | 173 | |
174 | 174 | $notification = $this->notificationManager->createNotification(); |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | 'targetUser' => $transferOwnership->getTargetUser(), |
181 | 181 | 'nodeName' => $transferOwnership->getNodeName() |
182 | 182 | ]) |
183 | - ->setObject('transfer', (string)$transferOwnership->getId()); |
|
183 | + ->setObject('transfer', (string) $transferOwnership->getId()); |
|
184 | 184 | $this->notificationManager->notify($notification); |
185 | 185 | |
186 | 186 | $this->mapper->delete($transferOwnership); |
@@ -212,7 +212,7 @@ |
||
212 | 212 | return $this->file->fopen('w'); |
213 | 213 | } else { |
214 | 214 | $source = fopen('php://temp', 'w+'); |
215 | - return CallbackWrapper::wrap($source, null, null, null, null, function () use ($source) { |
|
215 | + return CallbackWrapper::wrap($source, null, null, null, null, function() use ($source) { |
|
216 | 216 | rewind($source); |
217 | 217 | $this->putContent($source); |
218 | 218 | }); |
@@ -124,9 +124,9 @@ discard block |
||
124 | 124 | |
125 | 125 | protected function setIcon(IEvent $event, string $icon, string $app = 'files') { |
126 | 126 | if ($this->activityManager->getRequirePNG()) { |
127 | - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath($app, $icon . '.png'))); |
|
127 | + $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath($app, $icon.'.png'))); |
|
128 | 128 | } else { |
129 | - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath($app, $icon . '.svg'))); |
|
129 | + $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath($app, $icon.'.svg'))); |
|
130 | 130 | } |
131 | 131 | } |
132 | 132 | |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | } |
246 | 246 | |
247 | 247 | if ($this->fileIsEncrypted) { |
248 | - $event->setSubject($event->getSubject() . '_enc', $event->getSubjectParameters()); |
|
248 | + $event->setSubject($event->getSubject().'_enc', $event->getSubjectParameters()); |
|
249 | 249 | } |
250 | 250 | |
251 | 251 | if (!isset($parsedParameters['user'])) { |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | protected function setSubjects(IEvent $event, $subject, array $parameters) { |
273 | 273 | $placeholders = $replacements = []; |
274 | 274 | foreach ($parameters as $placeholder => $parameter) { |
275 | - $placeholders[] = '{' . $placeholder . '}'; |
|
275 | + $placeholders[] = '{'.$placeholder.'}'; |
|
276 | 276 | if ($parameter['type'] === 'file') { |
277 | 277 | $replacements[] = $parameter['path']; |
278 | 278 | } else { |
@@ -538,7 +538,7 @@ discard block |
||
538 | 538 | $lowerSearch = strtolower($search); |
539 | 539 | foreach ($cloudIds as $cloudId) { |
540 | 540 | if (strtolower($cloudId) === $lowerSearch) { |
541 | - $this->displayNames[$search] = $contact['FN'] . " ($cloudId)"; |
|
541 | + $this->displayNames[$search] = $contact['FN']." ($cloudId)"; |
|
542 | 542 | return $this->displayNames[$search]; |
543 | 543 | } |
544 | 544 | } |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | protected function setSubjects(IEvent $event, $subject, array $parameters) { |
126 | 126 | $placeholders = $replacements = []; |
127 | 127 | foreach ($parameters as $placeholder => $parameter) { |
128 | - $placeholders[] = '{' . $placeholder . '}'; |
|
128 | + $placeholders[] = '{'.$placeholder.'}'; |
|
129 | 129 | if ($parameter['type'] === 'file') { |
130 | 130 | $replacements[] = $parameter['path']; |
131 | 131 | } else { |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | $lowerSearch = strtolower($search); |
219 | 219 | foreach ($cloudIds as $cloudId) { |
220 | 220 | if (strtolower($cloudId) === $lowerSearch) { |
221 | - $this->displayNames[$search] = $contact['FN'] . " ($cloudId)"; |
|
221 | + $this->displayNames[$search] = $contact['FN']." ($cloudId)"; |
|
222 | 222 | return $this->displayNames[$search]; |
223 | 223 | } |
224 | 224 | } |