@@ -78,15 +78,15 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | $name = $rowCG['display_name']; |
| 80 | 80 | while (strlen($name) < 3) { |
| 81 | - $name = '_' . $name; |
|
| 81 | + $name = '_'.$name; |
|
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - $this->output->writeln('+ New Team <info>' . $name . '</info>, owned by <info>' . $ownerId . '</info>'); |
|
| 84 | + $this->output->writeln('+ New Team <info>'.$name.'</info>, owned by <info>'.$ownerId.'</info>'); |
|
| 85 | 85 | |
| 86 | 86 | // based on owner's userid, we create federateduser and a new circle |
| 87 | 87 | $owner = $this->cachedFed($ownerId); |
| 88 | 88 | if ($owner === null) { |
| 89 | - $this->output->writeln('<error>unknown user</error> ' . $ownerId); |
|
| 89 | + $this->output->writeln('<error>unknown user</error> '.$ownerId); |
|
| 90 | 90 | continue; |
| 91 | 91 | } |
| 92 | 92 | |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | try { |
| 96 | 96 | $circle = $this->circlesManager->createCircle($name); |
| 97 | 97 | } catch (\Exception $e) { |
| 98 | - $this->output->writeln('<error>' . get_class($e) . ' ' . $e->getMessage() . '</error> with data ' . json_encode($rowCG)); |
|
| 98 | + $this->output->writeln('<error>'.get_class($e).' '.$e->getMessage().'</error> with data '.json_encode($rowCG)); |
|
| 99 | 99 | $this->logger->log(2, 'error while creating circle', ['exception' => $e]); |
| 100 | 100 | $this->circlesManager->stopSession(); |
| 101 | 101 | continue; |
@@ -124,17 +124,17 @@ discard block |
||
| 124 | 124 | |
| 125 | 125 | $fedUser = $this->cachedFed($userId); |
| 126 | 126 | if ($fedUser === null) { |
| 127 | - $this->output->writeln('<error>unknown user</error> ' . $userId); |
|
| 127 | + $this->output->writeln('<error>unknown user</error> '.$userId); |
|
| 128 | 128 | continue; |
| 129 | 129 | } |
| 130 | - $this->output->writeln(' - new member <info>' . $userId . '</info>'); |
|
| 130 | + $this->output->writeln(' - new member <info>'.$userId.'</info>'); |
|
| 131 | 131 | |
| 132 | 132 | $member = $this->circlesManager->addMember($circle->getSingleId(), $fedUser); |
| 133 | 133 | if ($rowM['role'] === '1') { |
| 134 | 134 | $this->circlesManager->levelMember($member->getId(), Member::LEVEL_ADMIN); |
| 135 | 135 | } |
| 136 | 136 | } catch (\Exception $e) { |
| 137 | - $this->output->writeln('<error>' . get_class($e) . ' ' . $e->getMessage() . '</error>'); |
|
| 137 | + $this->output->writeln('<error>'.get_class($e).' '.$e->getMessage().'</error>'); |
|
| 138 | 138 | $this->logger->log(2, 'error while migrating custom group member', ['exception' => $e]); |
| 139 | 139 | } |
| 140 | 140 | } |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | ->where($update->expr()->in('id', $update->createNamedParameter($shareIds, IQueryBuilder::PARAM_INT_ARRAY))); |
| 171 | 171 | |
| 172 | 172 | $count = $update->executeStatement(); |
| 173 | - $this->output->writeln('> ' . ((string)$count) . ' shares updated'); |
|
| 173 | + $this->output->writeln('> '.((string)$count).' shares updated'); |
|
| 174 | 174 | |
| 175 | 175 | $this->fixShareChildren($shareIds, $memberIds); |
| 176 | 176 | } |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | try { |
| 187 | 187 | $this->fedList[$userId] = $this->circlesManager->getLocalFederatedUser($userId); |
| 188 | 188 | } catch (\Exception $e) { |
| 189 | - $this->logger->warning('unknown local user ' . $userId, ['exception' => $e]); |
|
| 189 | + $this->logger->warning('unknown local user '.$userId, ['exception' => $e]); |
|
| 190 | 190 | $this->fedList[$userId] = null; |
| 191 | 191 | } |
| 192 | 192 | } |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | $count += $update->executeStatement(); |
| 221 | 221 | } |
| 222 | 222 | |
| 223 | - $this->output->writeln('> ' . ((string)$count) . ' children shares updated'); |
|
| 223 | + $this->output->writeln('> '.((string)$count).' children shares updated'); |
|
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | '<error>WARNING! You are about to delete all data related to the Circles App!</error>' |
| 92 | 92 | ); |
| 93 | 93 | $question = new ConfirmationQuestion( |
| 94 | - '<comment>Do you really want to ' . $action . ' Circles ?</comment> (y/N) ', false, |
|
| 94 | + '<comment>Do you really want to '.$action.' Circles ?</comment> (y/N) ', false, |
|
| 95 | 95 | '/^(y|Y)/i' |
| 96 | 96 | ); |
| 97 | 97 | |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | $output->writeln('<error>WARNING! This operation is not reversible.</error>'); |
| 108 | 108 | |
| 109 | 109 | $question = new Question( |
| 110 | - '<comment>Please confirm this destructive operation by typing \'' . $action |
|
| 110 | + '<comment>Please confirm this destructive operation by typing \''.$action |
|
| 111 | 111 | . '\'</comment>: ', '' |
| 112 | 112 | ); |
| 113 | 113 | |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | $this->coreRequestBuilder->uninstall(); |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - $output->writeln('<info>' . $action . ' done</info>'); |
|
| 128 | + $output->writeln('<info>'.$action.' done</info>'); |
|
| 129 | 129 | |
| 130 | 130 | return 0; |
| 131 | 131 | } |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | $this->maintenanceService->runMaintenance($i, $input->getOption('force-refresh')); |
| 139 | 139 | } catch (MaintenanceException $e) { |
| 140 | 140 | $this->logger->warning('issue while performing maintenance', ['level' => $i, ['exception' => $e]]); |
| 141 | - $output->writeln('- <error>issue while performing maintenance</error> ' . $e->getMessage() . ' (more details in logs)'); |
|
| 141 | + $output->writeln('- <error>issue while performing maintenance</error> '.$e->getMessage().' (more details in logs)'); |
|
| 142 | 142 | } |
| 143 | 143 | } |
| 144 | 144 | |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | $federatedUser = $this->federatedUserService->getLocalFederatedUser($userId); |
| 159 | 159 | $displayName = $this->maintenanceService->updateDisplayName($federatedUser); |
| 160 | 160 | if ($displayName !== '') { |
| 161 | - $output->writeln('Display name of ' . $federatedUser->getSingleId() . ' updated to ' . $displayName); |
|
| 161 | + $output->writeln('Display name of '.$federatedUser->getSingleId().' updated to '.$displayName); |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | return 0; |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | try { |
| 174 | 174 | $this->refreshSingleDisplayName($row['uid'], $output); |
| 175 | 175 | } catch (Exception $e) { |
| 176 | - $output->writeln(get_class($e) . ' while trying to update display name of ' . $row['uid']); |
|
| 176 | + $output->writeln(get_class($e).' while trying to update display name of '.$row['uid']); |
|
| 177 | 177 | } |
| 178 | 178 | } |
| 179 | 179 | } |
@@ -12,9 +12,9 @@ |
||
| 12 | 12 | |
| 13 | 13 | return RectorConfig::configure() |
| 14 | 14 | ->withPaths([ |
| 15 | - __DIR__ . '/appinfo', |
|
| 16 | - __DIR__ . '/lib', |
|
| 17 | - __DIR__ . '/tests/unit', |
|
| 15 | + __DIR__.'/appinfo', |
|
| 16 | + __DIR__.'/lib', |
|
| 17 | + __DIR__.'/tests/unit', |
|
| 18 | 18 | ]) |
| 19 | 19 | ->withImportNames(importShortClasses: false) |
| 20 | 20 | ->withSets([ |
@@ -241,16 +241,16 @@ discard block |
||
| 241 | 241 | try { |
| 242 | 242 | $test = new ReflectionClass($class); |
| 243 | 243 | } catch (ReflectionException $e) { |
| 244 | - throw new FederatedEventException('ReflectionException with ' . $class . ': ' . $e->getMessage()); |
|
| 244 | + throw new FederatedEventException('ReflectionException with '.$class.': '.$e->getMessage()); |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | if (!in_array(IFederatedItem::class, $test->getInterfaceNames())) { |
| 248 | - throw new FederatedEventException($class . ' does not implements IFederatedItem'); |
|
| 248 | + throw new FederatedEventException($class.' does not implements IFederatedItem'); |
|
| 249 | 249 | } |
| 250 | 250 | |
| 251 | 251 | $item = Server::get($class); |
| 252 | 252 | if (!($item instanceof IFederatedItem)) { |
| 253 | - throw new FederatedEventException($class . ' not an IFederatedItem'); |
|
| 253 | + throw new FederatedEventException($class.' not an IFederatedItem'); |
|
| 254 | 254 | } |
| 255 | 255 | |
| 256 | 256 | if ($item instanceof IFederatedItemHighSeverity) { |
@@ -448,7 +448,7 @@ discard block |
||
| 448 | 448 | $knownInstances = $this->memberRequest->getMemberInstances($circle->getSingleId()); |
| 449 | 449 | $instances = array_filter( |
| 450 | 450 | array_map( |
| 451 | - function (RemoteInstance $instance) use ($knownInstances) { |
|
| 451 | + function(RemoteInstance $instance) use ($knownInstances) { |
|
| 452 | 452 | if (!in_array($instance->getInstance(), $knownInstances)) { |
| 453 | 453 | return null; |
| 454 | 454 | } |
@@ -463,7 +463,7 @@ discard block |
||
| 463 | 463 | if ($event->hasMember() |
| 464 | 464 | && !$this->configService->isLocalInstance($event->getMember()->getInstance())) { |
| 465 | 465 | $currentInstances = array_map( |
| 466 | - function (RemoteInstance $instance): string { |
|
| 466 | + function(RemoteInstance $instance): string { |
|
| 467 | 467 | return $instance->getInstance(); |
| 468 | 468 | }, $instances |
| 469 | 469 | ); |
@@ -451,7 +451,7 @@ discard block |
||
| 451 | 451 | $l10n = Server::get(IFactory::class)->get('circles'); |
| 452 | 452 | $display = $l10n->t('%s (Team owned by %s)', [$display, $circle->getOwner()->getDisplayName()]); |
| 453 | 453 | } else { |
| 454 | - $display .= ' (' . Circle::$DEF_SOURCE[$circle->getSource()] . ')'; |
|
| 454 | + $display .= ' ('.Circle::$DEF_SOURCE[$circle->getSource()].')'; |
|
| 455 | 455 | } |
| 456 | 456 | |
| 457 | 457 | $share->setSharedWithDisplayName($display); |
@@ -541,22 +541,22 @@ discard block |
||
| 541 | 541 | |
| 542 | 542 | public function importFromDatabase(array $data, string $prefix = ''): IQueryRow { |
| 543 | 543 | $shareTime = new DateTime(); |
| 544 | - $shareTime->setTimestamp($this->getInt($prefix . 'stime', $data)); |
|
| 545 | - |
|
| 546 | - $this->setId($this->get($prefix . 'id', $data)) |
|
| 547 | - ->setShareType($this->getInt($prefix . 'share_type', $data)) |
|
| 548 | - ->setPermissions($this->getInt($prefix . 'permissions', $data)) |
|
| 549 | - ->setItemType($this->get($prefix . 'item_type', $data)) |
|
| 550 | - ->setItemSource($this->getInt($prefix . 'item_source', $data)) |
|
| 551 | - ->setItemTarget($this->get($prefix . 'item_target', $data)) |
|
| 552 | - ->setFileSource($this->getInt($prefix . 'file_source', $data)) |
|
| 553 | - ->setFileTarget($this->get($prefix . 'file_target', $data)) |
|
| 554 | - ->setSharedWith($this->get($prefix . 'share_with', $data)) |
|
| 555 | - ->setSharedBy($this->get($prefix . 'uid_initiator', $data)) |
|
| 556 | - ->setShareOwner($this->get($prefix . 'uid_owner', $data)) |
|
| 557 | - ->setToken($this->get($prefix . 'token', $data)) |
|
| 544 | + $shareTime->setTimestamp($this->getInt($prefix.'stime', $data)); |
|
| 545 | + |
|
| 546 | + $this->setId($this->get($prefix.'id', $data)) |
|
| 547 | + ->setShareType($this->getInt($prefix.'share_type', $data)) |
|
| 548 | + ->setPermissions($this->getInt($prefix.'permissions', $data)) |
|
| 549 | + ->setItemType($this->get($prefix.'item_type', $data)) |
|
| 550 | + ->setItemSource($this->getInt($prefix.'item_source', $data)) |
|
| 551 | + ->setItemTarget($this->get($prefix.'item_target', $data)) |
|
| 552 | + ->setFileSource($this->getInt($prefix.'file_source', $data)) |
|
| 553 | + ->setFileTarget($this->get($prefix.'file_target', $data)) |
|
| 554 | + ->setSharedWith($this->get($prefix.'share_with', $data)) |
|
| 555 | + ->setSharedBy($this->get($prefix.'uid_initiator', $data)) |
|
| 556 | + ->setShareOwner($this->get($prefix.'uid_owner', $data)) |
|
| 557 | + ->setToken($this->get($prefix.'token', $data)) |
|
| 558 | 558 | ->setShareTime($shareTime) |
| 559 | - ->setShareNote($this->get($prefix . 'note', $data)); |
|
| 559 | + ->setShareNote($this->get($prefix.'note', $data)); |
|
| 560 | 560 | |
| 561 | 561 | $this->importAttributesFromDatabase($this->get('attributes', $data)); |
| 562 | 562 | |
@@ -566,9 +566,9 @@ discard block |
||
| 566 | 566 | // $share->setPassword($this->get('password', $data, '')); |
| 567 | 567 | // } |
| 568 | 568 | |
| 569 | - $this->setChildId($this->getInt($prefix . 'child_id', $data)) |
|
| 570 | - ->setChildFileTarget($this->get($prefix . 'child_file_target', $data)) |
|
| 571 | - ->setChildPermissions($this->getInt($prefix . 'child_permissions', $data)) |
|
| 569 | + $this->setChildId($this->getInt($prefix.'child_id', $data)) |
|
| 570 | + ->setChildFileTarget($this->get($prefix.'child_file_target', $data)) |
|
| 571 | + ->setChildPermissions($this->getInt($prefix.'child_permissions', $data)) |
|
| 572 | 572 | ->setProviderId(ShareByCircleProvider::IDENTIFIER) |
| 573 | 573 | ->setStatus(Ishare::STATUS_ACCEPTED); |
| 574 | 574 | |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | $this->configService = Server::get(ConfigService::class); |
| 116 | 116 | $this->miscService = Server::get(MiscService::class); |
| 117 | 117 | } catch (QueryException $e) { |
| 118 | - $this->logger->info('Circles: cannot init FileSharingBroadcaster - ' . $e->getMessage(), ['exception' => $e]); |
|
| 118 | + $this->logger->info('Circles: cannot init FileSharingBroadcaster - '.$e->getMessage(), ['exception' => $e]); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | try { |
@@ -260,7 +260,7 @@ discard block |
||
| 260 | 260 | |
| 261 | 261 | $allShares = $this->fileSharesRequest->getSharesForCircle($member->getCircleId()); |
| 262 | 262 | $knownShares = array_map( |
| 263 | - function (SharesToken $shareToken) { |
|
| 263 | + function(SharesToken $shareToken) { |
|
| 264 | 264 | return $shareToken->getShareId(); |
| 265 | 265 | }, |
| 266 | 266 | $this->tokensRequest->getTokensFromMember($member) |
@@ -307,7 +307,7 @@ discard block |
||
| 307 | 307 | * @throws IllegalIDChangeException |
| 308 | 308 | */ |
| 309 | 309 | private function generateShare($data): IShare { |
| 310 | - $this->logger->log(0, 'Regenerate shares from payload: ' . json_encode($data)); |
|
| 310 | + $this->logger->log(0, 'Regenerate shares from payload: '.json_encode($data)); |
|
| 311 | 311 | |
| 312 | 312 | $share = new Share($this->rootFolder, $this->userManager); |
| 313 | 313 | $share->setId($data['id']); |
@@ -399,7 +399,7 @@ discard block |
||
| 399 | 399 | ); |
| 400 | 400 | $this->sendPasswordByMail($share, $displayName, $email, $password); |
| 401 | 401 | } catch (Exception $e) { |
| 402 | - $this->logger->info('Circles::sharedByMail - mail were not sent: ' . $e->getMessage(), ['exception' => $e]); |
|
| 402 | + $this->logger->info('Circles::sharedByMail - mail were not sent: '.$e->getMessage(), ['exception' => $e]); |
|
| 403 | 403 | } |
| 404 | 404 | } |
| 405 | 405 | |
@@ -417,8 +417,8 @@ discard block |
||
| 417 | 417 | $message = $this->mailer->createMessage(); |
| 418 | 418 | |
| 419 | 419 | $this->logger->log( |
| 420 | - 0, "Sending mail to circle '" . $circleName . "': " . $email . ' file: ' . $fileName |
|
| 421 | - . ' - link: ' . $link |
|
| 420 | + 0, "Sending mail to circle '".$circleName."': ".$email.' file: '.$fileName |
|
| 421 | + . ' - link: '.$link |
|
| 422 | 422 | ); |
| 423 | 423 | |
| 424 | 424 | $subject = $this->l10n->t('%s shared »%s« with you.', [$author, $fileName]); |
@@ -456,7 +456,7 @@ discard block |
||
| 456 | 456 | |
| 457 | 457 | $message = $this->mailer->createMessage(); |
| 458 | 458 | |
| 459 | - $this->logger->log(0, "Sending password mail to circle '" . $circleName . "': " . $email); |
|
| 459 | + $this->logger->log(0, "Sending password mail to circle '".$circleName."': ".$email); |
|
| 460 | 460 | |
| 461 | 461 | $filename = $share->getNode() |
| 462 | 462 | ->getName(); |
@@ -511,7 +511,7 @@ discard block |
||
| 511 | 511 | $message->setFrom([Util::getDefaultEmailAddress($instanceName) => $senderName]); |
| 512 | 512 | if ($initiatorEmailAddress !== null) { |
| 513 | 513 | $message->setReplyTo([$initiatorEmailAddress => $initiatorDisplayName]); |
| 514 | - $emailTemplate->addFooter($instanceName . ' - ' . $this->defaults->getSlogan()); |
|
| 514 | + $emailTemplate->addFooter($instanceName.' - '.$this->defaults->getSlogan()); |
|
| 515 | 515 | } else { |
| 516 | 516 | $emailTemplate->addFooter(); |
| 517 | 517 | } |
@@ -546,7 +546,7 @@ discard block |
||
| 546 | 546 | $emailTemplate->addHeader(); |
| 547 | 547 | $emailTemplate->addHeading($subject, false); |
| 548 | 548 | $emailTemplate->addBodyText( |
| 549 | - htmlspecialchars($text) . '<br>' . htmlspecialchars( |
|
| 549 | + htmlspecialchars($text).'<br>'.htmlspecialchars( |
|
| 550 | 550 | $this->l10n->t('Click the button below to open it.') |
| 551 | 551 | ), $text |
| 552 | 552 | ); |
@@ -592,7 +592,7 @@ discard block |
||
| 592 | 592 | $this->sendMailExistingShares($template, $author->getCachedName(), $recipient); |
| 593 | 593 | $this->sendPasswordExistingShares($author, $recipient, $password); |
| 594 | 594 | } catch (Exception $e) { |
| 595 | - $this->logger->log(2, 'Failed to send mail about existing share ' . $e->getMessage()); |
|
| 595 | + $this->logger->log(2, 'Failed to send mail about existing share '.$e->getMessage()); |
|
| 596 | 596 | } |
| 597 | 597 | } |
| 598 | 598 | |
@@ -615,7 +615,7 @@ discard block |
||
| 615 | 615 | $authorName = ($authorUser instanceof IUser) ? $authorUser->getDisplayName() : $author; |
| 616 | 616 | $authorEmail = ($authorUser instanceof IUser) ? $authorUser->getEMailAddress() : null; |
| 617 | 617 | |
| 618 | - $this->logger->log(0, "Sending password mail about existing files to '" . $email . "'"); |
|
| 618 | + $this->logger->log(0, "Sending password mail about existing files to '".$email."'"); |
|
| 619 | 619 | |
| 620 | 620 | $plainBodyPart = $this->l10n->t( |
| 621 | 621 | "%1\$s shared multiple files with you.\nYou should have already received a separate email with a link to access them.\n", |
@@ -657,7 +657,7 @@ discard block |
||
| 657 | 657 | $message->setFrom([Util::getDefaultEmailAddress($instanceName) => $senderName]); |
| 658 | 658 | if ($authorEmail !== null) { |
| 659 | 659 | $message->setReplyTo([$authorEmail => $authorName]); |
| 660 | - $emailTemplate->addFooter($instanceName . ' - ' . $this->defaults->getSlogan()); |
|
| 660 | + $emailTemplate->addFooter($instanceName.' - '.$this->defaults->getSlogan()); |
|
| 661 | 661 | } else { |
| 662 | 662 | $emailTemplate->addFooter(); |
| 663 | 663 | } |
@@ -702,7 +702,7 @@ discard block |
||
| 702 | 702 | */ |
| 703 | 703 | protected function generateMailExitingShares($author, $circleName) { |
| 704 | 704 | $this->logger->log( |
| 705 | - 0, "Generating mail about existing share mail from '" . $author . "' in " |
|
| 705 | + 0, "Generating mail about existing share mail from '".$author."' in " |
|
| 706 | 706 | . $circleName |
| 707 | 707 | ); |
| 708 | 708 | |
@@ -133,7 +133,7 @@ |
||
| 133 | 133 | public function boot(IBootContext $context): void { |
| 134 | 134 | $serverContainer = $context->getServerContainer(); |
| 135 | 135 | |
| 136 | - $context->injectFn(function (IShareManager $shareManager) { |
|
| 136 | + $context->injectFn(function(IShareManager $shareManager) { |
|
| 137 | 137 | $shareManager->registerShareProvider(ShareByCircleProvider::class); |
| 138 | 138 | }); |
| 139 | 139 | |
@@ -14,10 +14,10 @@ |
||
| 14 | 14 | define('PHPUNIT_RUN', 1); |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | -require_once __DIR__ . '/../../../lib/base.php'; |
|
| 18 | -require_once __DIR__ . '/../vendor/autoload.php'; |
|
| 17 | +require_once __DIR__.'/../../../lib/base.php'; |
|
| 18 | +require_once __DIR__.'/../vendor/autoload.php'; |
|
| 19 | 19 | |
| 20 | -require_once __DIR__ . '/../../../tests/autoload.php'; |
|
| 20 | +require_once __DIR__.'/../../../tests/autoload.php'; |
|
| 21 | 21 | |
| 22 | 22 | Server::get(IAppManager::class)->loadApp('circles'); |
| 23 | 23 | |
@@ -276,7 +276,7 @@ discard block |
||
| 276 | 276 | $initiatorEmail = $initiatorUser->getEMailAddress(); |
| 277 | 277 | if ($initiatorEmail !== null) { |
| 278 | 278 | $message->setReplyTo([$initiatorEmail => $initiatorDisplayName]); |
| 279 | - $emailTemplate->addFooter($instanceName . ($this->defaults->getSlogan() !== '' ? ' - ' . $this->defaults->getSlogan() : '')); |
|
| 279 | + $emailTemplate->addFooter($instanceName.($this->defaults->getSlogan() !== '' ? ' - '.$this->defaults->getSlogan() : '')); |
|
| 280 | 280 | } else { |
| 281 | 281 | $emailTemplate->addFooter(); |
| 282 | 282 | } |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | $failedRecipients = $this->mailer->send($message); |
| 290 | 290 | |
| 291 | 291 | if (!empty($failedRecipients)) { |
| 292 | - $this->logger->error('Share notification mail could not be sent to: ' . implode(', ', $failedRecipients)); |
|
| 292 | + $this->logger->error('Share notification mail could not be sent to: '.implode(', ', $failedRecipients)); |
|
| 293 | 293 | return; |
| 294 | 294 | } |
| 295 | 295 | } |
@@ -545,7 +545,7 @@ discard block |
||
| 545 | 545 | |
| 546 | 546 | return array_filter( |
| 547 | 547 | array_map( |
| 548 | - function (ShareWrapper $wrapper) { |
|
| 548 | + function(ShareWrapper $wrapper) { |
|
| 549 | 549 | return $wrapper->getShare($this->rootFolder, $this->userManager, $this->urlGenerator); |
| 550 | 550 | }, $wrappedShares |
| 551 | 551 | ) |
@@ -597,7 +597,7 @@ discard block |
||
| 597 | 597 | |
| 598 | 598 | return array_filter( |
| 599 | 599 | array_map( |
| 600 | - function (ShareWrapper $wrapper) { |
|
| 600 | + function(ShareWrapper $wrapper) { |
|
| 601 | 601 | return $wrapper->getShare($this->rootFolder, $this->userManager, $this->urlGenerator); |
| 602 | 602 | }, $wrappedShares |
| 603 | 603 | ) |
@@ -646,7 +646,7 @@ discard block |
||
| 646 | 646 | |
| 647 | 647 | return array_filter( |
| 648 | 648 | array_map( |
| 649 | - function (ShareWrapper $wrapper) { |
|
| 649 | + function(ShareWrapper $wrapper) { |
|
| 650 | 650 | return $wrapper->getShare( |
| 651 | 651 | $this->rootFolder, $this->userManager, $this->urlGenerator, true |
| 652 | 652 | ); |
@@ -677,7 +677,7 @@ discard block |
||
| 677 | 677 | |
| 678 | 678 | $share = $wrappedShare->getShare($this->rootFolder, $this->userManager, $this->urlGenerator); |
| 679 | 679 | if ($share->getPassword() !== '') { |
| 680 | - $this->logger->notice('share is protected by a password, hash: ' . $share->getPassword()); |
|
| 680 | + $this->logger->notice('share is protected by a password, hash: '.$share->getPassword()); |
|
| 681 | 681 | } |
| 682 | 682 | |
| 683 | 683 | return $share; |
@@ -787,7 +787,7 @@ discard block |
||
| 787 | 787 | ]; |
| 788 | 788 | } else { |
| 789 | 789 | // we only store temp value, as token is unknown at this point |
| 790 | - $remote[$member->getUserid() . '@' . $member->getInstance()] = [ |
|
| 790 | + $remote[$member->getUserid().'@'.$member->getInstance()] = [ |
|
| 791 | 791 | 'node_id' => $share->getFileSource(), |
| 792 | 792 | 'shareId' => $share->getId(), |
| 793 | 793 | 'memberId' => $member->getId(), |