@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | } |
246 | 246 | |
247 | 247 | $expr = $qb->expr(); |
248 | - $pf = '' . $this->default_select_alias . '.'; |
|
248 | + $pf = ''.$this->default_select_alias.'.'; |
|
249 | 249 | |
250 | 250 | /** @noinspection PhpMethodParametersCountMismatchInspection */ |
251 | 251 | $qb->selectAlias('u.user_id', 'viewer_userid') |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | ->leftJoin( |
260 | 260 | $this->default_select_alias, DeprecatedRequestBuilder::TABLE_MEMBERS, 'u', |
261 | 261 | $expr->andX( |
262 | - $expr->eq('u.circle_id', $pf . 'unique_id'), |
|
262 | + $expr->eq('u.circle_id', $pf.'unique_id'), |
|
263 | 263 | $expr->eq('u.user_id', $qb->createNamedParameter($userId)), |
264 | 264 | $expr->eq('u.instance', $qb->createNamedParameter($instanceId)), |
265 | 265 | $expr->eq('u.user_type', $qb->createNamedParameter($type)) |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | } |
281 | 281 | |
282 | 282 | $expr = $qb->expr(); |
283 | - $pf = $this->default_select_alias . '.'; |
|
283 | + $pf = $this->default_select_alias.'.'; |
|
284 | 284 | |
285 | 285 | /** @noinspection PhpMethodParametersCountMismatchInspection */ |
286 | 286 | $qb->selectAlias('o.user_id', 'owner_userid') |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | ->leftJoin( |
294 | 294 | $this->default_select_alias, DeprecatedRequestBuilder::TABLE_MEMBERS, 'o', |
295 | 295 | $expr->andX( |
296 | - $expr->eq('o.circle_id', $pf . 'unique_id'), |
|
296 | + $expr->eq('o.circle_id', $pf.'unique_id'), |
|
297 | 297 | $expr->eq('o.level', $qb->createNamedParameter(DeprecatedMember::LEVEL_OWNER)), |
298 | 298 | $expr->eq('o.user_type', $qb->createNamedParameter(DeprecatedMember::TYPE_USER)) |
299 | 299 | ) |
@@ -346,8 +346,8 @@ discard block |
||
346 | 346 | $expr = $qb->expr(); |
347 | 347 | |
348 | 348 | if ($pf === '') { |
349 | - $p = ($qb->getType() === QueryBuilder::SELECT) ? $this->default_select_alias . '.' : ''; |
|
350 | - $qb->andWhere($expr->gte($p . 'level', $qb->createNamedParameter($level))); |
|
349 | + $p = ($qb->getType() === QueryBuilder::SELECT) ? $this->default_select_alias.'.' : ''; |
|
350 | + $qb->andWhere($expr->gte($p.'level', $qb->createNamedParameter($level))); |
|
351 | 351 | |
352 | 352 | return; |
353 | 353 | } |
@@ -376,7 +376,7 @@ discard block |
||
376 | 376 | if ($p === 'g' && !$this->leftJoinedNCGroupAndUser) { |
377 | 377 | continue; |
378 | 378 | } |
379 | - $orX->add($expr->gte($p . '.level', $qb->createNamedParameter($level))); |
|
379 | + $orX->add($expr->gte($p.'.level', $qb->createNamedParameter($level))); |
|
380 | 380 | } |
381 | 381 | |
382 | 382 | return $orX; |
@@ -391,12 +391,12 @@ discard block |
||
391 | 391 | protected function limitToMembersAndAlmost(IQueryBuilder $qb) { |
392 | 392 | $expr = $qb->expr(); |
393 | 393 | |
394 | - $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->default_select_alias . '.' : ''; |
|
394 | + $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->default_select_alias.'.' : ''; |
|
395 | 395 | |
396 | 396 | $orX = $expr->orX(); |
397 | - $orX->add($expr->eq($pf . 'status', $qb->createNamedParameter(DeprecatedMember::STATUS_MEMBER))); |
|
398 | - $orX->add($expr->eq($pf . 'status', $qb->createNamedParameter(DeprecatedMember::STATUS_INVITED))); |
|
399 | - $orX->add($expr->eq($pf . 'status', $qb->createNamedParameter(DeprecatedMember::STATUS_REQUEST))); |
|
397 | + $orX->add($expr->eq($pf.'status', $qb->createNamedParameter(DeprecatedMember::STATUS_MEMBER))); |
|
398 | + $orX->add($expr->eq($pf.'status', $qb->createNamedParameter(DeprecatedMember::STATUS_INVITED))); |
|
399 | + $orX->add($expr->eq($pf.'status', $qb->createNamedParameter(DeprecatedMember::STATUS_REQUEST))); |
|
400 | 400 | |
401 | 401 | $qb->andWhere($orX); |
402 | 402 | } |
@@ -409,8 +409,8 @@ discard block |
||
409 | 409 | */ |
410 | 410 | public function limitToDBField(IQueryBuilder $qb, $field, $value) { |
411 | 411 | $expr = $qb->expr(); |
412 | - $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->default_select_alias . '.' : ''; |
|
413 | - $qb->andWhere($expr->eq($pf . $field, $qb->createNamedParameter($value))); |
|
412 | + $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->default_select_alias.'.' : ''; |
|
413 | + $qb->andWhere($expr->eq($pf.$field, $qb->createNamedParameter($value))); |
|
414 | 414 | } |
415 | 415 | |
416 | 416 | |
@@ -421,8 +421,8 @@ discard block |
||
421 | 421 | */ |
422 | 422 | private function limitToDBFieldOrGreater(IQueryBuilder $qb, $field, $value) { |
423 | 423 | $expr = $qb->expr(); |
424 | - $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->default_select_alias . '.' : ''; |
|
425 | - $qb->andWhere($expr->gte($pf . $field, $qb->createNamedParameter($value))); |
|
424 | + $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->default_select_alias.'.' : ''; |
|
425 | + $qb->andWhere($expr->gte($pf.$field, $qb->createNamedParameter($value))); |
|
426 | 426 | } |
427 | 427 | |
428 | 428 | |
@@ -437,9 +437,9 @@ discard block |
||
437 | 437 | protected function limitToNCGroupUser(IQueryBuilder $qb, $userId = '') { |
438 | 438 | $expr = $qb->expr(); |
439 | 439 | |
440 | - $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->default_select_alias . '.' : ''; |
|
440 | + $pf = ($qb->getType() === QueryBuilder::SELECT) ? $this->default_select_alias.'.' : ''; |
|
441 | 441 | |
442 | - $and = $expr->andX($expr->eq($pf . 'user_id', 'ncgu.gid')); |
|
442 | + $and = $expr->andX($expr->eq($pf.'user_id', 'ncgu.gid')); |
|
443 | 443 | if ($userId !== '') { |
444 | 444 | $and->add($expr->eq('ncgu.uid', $qb->createNamedParameter($userId))); |
445 | 445 | } else { |
@@ -462,7 +462,7 @@ discard block |
||
462 | 462 | } |
463 | 463 | |
464 | 464 | $expr = $qb->expr(); |
465 | - $pf = $this->default_select_alias . '.'; |
|
465 | + $pf = $this->default_select_alias.'.'; |
|
466 | 466 | |
467 | 467 | /** @noinspection PhpMethodParametersCountMismatchInspection */ |
468 | 468 | $qb->selectAlias('lc.type', 'circle_type') |
@@ -471,7 +471,7 @@ discard block |
||
471 | 471 | ->selectAlias('lc.settings', 'circle_settings') |
472 | 472 | ->leftJoin( |
473 | 473 | $this->default_select_alias, DeprecatedRequestBuilder::TABLE_CIRCLES, 'lc', |
474 | - $expr->eq($pf . 'circle_id', 'lc.unique_id') |
|
474 | + $expr->eq($pf.'circle_id', 'lc.unique_id') |
|
475 | 475 | ); |
476 | 476 | } |
477 | 477 |
@@ -187,11 +187,11 @@ discard block |
||
187 | 187 | $this->federatedUserService->commandLineInitiator($initiator, $initiatorType, $circleId, true); |
188 | 188 | $circle = $this->circleService->getCircle($circleId); |
189 | 189 | |
190 | - $output->writeln('<info>Name</info>: ' . $circle->getName()); |
|
190 | + $output->writeln('<info>Name</info>: '.$circle->getName()); |
|
191 | 191 | $owner = $circle->getOwner(); |
192 | - $output->writeln('<info>Owner</info>: ' . $owner->getUserId() . '@' . $owner->getInstance()); |
|
192 | + $output->writeln('<info>Owner</info>: '.$owner->getUserId().'@'.$owner->getInstance()); |
|
193 | 193 | $type = implode(", ", Circle::getCircleFlags($circle, Circle::FLAGS_LONG)); |
194 | - $output->writeln('<info>Config</info>: ' . $type); |
|
194 | + $output->writeln('<info>Config</info>: '.$type); |
|
195 | 195 | $output->writeln(' '); |
196 | 196 | |
197 | 197 | $tree = new TreeNode(null, new SimpleDataStore(['circle' => $circle])); |
@@ -256,8 +256,7 @@ discard block |
||
256 | 256 | $member, |
257 | 257 | $this->input->getOption('display-name') |
258 | 258 | ), |
259 | - ($level > 0) ? Member::$DEF_LEVEL[$level] : |
|
260 | - '(' . strtolower($member->getStatus()) . ')', |
|
259 | + ($level > 0) ? Member::$DEF_LEVEL[$level] : '('.strtolower($member->getStatus()).')', |
|
261 | 260 | ($member->hasInvitedBy()) ? $this->configService->displayFederatedUser( |
262 | 261 | $member->getInvitedBy(), |
263 | 262 | $this->input->getOption('display-name') |
@@ -423,14 +422,14 @@ discard block |
||
423 | 422 | $member = $data->gObj('member', Member::class); |
424 | 423 | |
425 | 424 | if ($lineNumber === 1) { |
426 | - $line .= '<info>' . $member->getSingleId() . '</info>'; |
|
425 | + $line .= '<info>'.$member->getSingleId().'</info>'; |
|
427 | 426 | if (!$this->configService->isLocalInstance($member->getInstance())) { |
428 | - $line .= '@' . $member->getInstance(); |
|
427 | + $line .= '@'.$member->getInstance(); |
|
429 | 428 | } |
430 | - $line .= ' (' . Member::$DEF_LEVEL[$member->getLevel()] . ')'; |
|
429 | + $line .= ' ('.Member::$DEF_LEVEL[$member->getLevel()].')'; |
|
431 | 430 | |
432 | - $line .= ' <info>MemberId</info>: ' . $member->getId(); |
|
433 | - $line .= ' <info>Name</info>: ' . $this->configService->displayFederatedUser( |
|
431 | + $line .= ' <info>MemberId</info>: '.$member->getId(); |
|
432 | + $line .= ' <info>Name</info>: '.$this->configService->displayFederatedUser( |
|
434 | 433 | $member, |
435 | 434 | $this->input->getOption('display-name') |
436 | 435 | ); |
@@ -438,7 +437,7 @@ discard block |
||
438 | 437 | $line .= ' <info>Source</info>: ' |
439 | 438 | . Circle::$DEF_SOURCE[$member->getBasedOn()->getSource()]; |
440 | 439 | } else { |
441 | - $line .= ' <info>Type</info>: ' . Member::$TYPE[$member->getUserType()]; |
|
440 | + $line .= ' <info>Type</info>: '.Member::$TYPE[$member->getUserType()]; |
|
442 | 441 | } |
443 | 442 | } |
444 | 443 | |
@@ -451,15 +450,15 @@ discard block |
||
451 | 450 | return $line; |
452 | 451 | } |
453 | 452 | $owner = $circle->getOwner(); |
454 | - $line .= '<info>Owner</info>: ' . $owner->getUserId() . '@' . $owner->getInstance(); |
|
453 | + $line .= '<info>Owner</info>: '.$owner->getUserId().'@'.$owner->getInstance(); |
|
455 | 454 | $type = implode(", ", Circle::getCircleFlags($circle, Circle::FLAGS_LONG)); |
456 | - $line .= ($type === '') ? '' : ' <info>Config</info>: ' . $type; |
|
455 | + $line .= ($type === '') ? '' : ' <info>Config</info>: '.$type; |
|
457 | 456 | } |
458 | 457 | } else { |
459 | 458 | if ($lineNumber === 1 && !is_null($circle)) { |
460 | - $line .= '<info>' . $circle->getSingleId() . '</info>'; |
|
459 | + $line .= '<info>'.$circle->getSingleId().'</info>'; |
|
461 | 460 | if (!$this->configService->isLocalInstance($circle->getInstance())) { |
462 | - $line .= '@' . $circle->getInstance(); |
|
461 | + $line .= '@'.$circle->getInstance(); |
|
463 | 462 | } |
464 | 463 | } |
465 | 464 | } |
@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | if ($shallow) { |
383 | 383 | $qb->limitInt('parent', $node->getId(), $aliasFileCache); |
384 | 384 | } else { |
385 | - $qb->like('path', $node->getInternalPath() . '/%', $aliasFileCache); |
|
385 | + $qb->like('path', $node->getInternalPath().'/%', $aliasFileCache); |
|
386 | 386 | } |
387 | 387 | $qb->limitNull('parent', false); |
388 | 388 | |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | } |
443 | 443 | |
444 | 444 | $ids = array_map( |
445 | - function (ShareWrapper $share): string { |
|
445 | + function(ShareWrapper $share): string { |
|
446 | 446 | return $share->getId(); |
447 | 447 | }, |
448 | 448 | $this->getItemsFromRequest($qb) |
@@ -457,7 +457,7 @@ discard block |
||
457 | 457 | $expr = $qb->expr(); |
458 | 458 | $qb->leftJoin( |
459 | 459 | CoreQueryBuilder::SHARE, CoreRequestBuilder::TABLE_SHARE, 'p', |
460 | - $expr->andX($expr->eq('p.id', CoreQueryBuilder::SHARE . '.parent')) |
|
460 | + $expr->andX($expr->eq('p.id', CoreQueryBuilder::SHARE.'.parent')) |
|
461 | 461 | ); |
462 | 462 | |
463 | 463 | $qb->filterNull('parent'); |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | */ |
97 | 97 | public function update(ShareWrapper $shareWrapper): void { |
98 | 98 | $qb = $this->getShareUpdateSql(); |
99 | - $shareAttributes = $this->formatShareAttributes($shareWrapper->getAttributes()); |
|
99 | + $shareAttributes = $this->formatShareAttributes($shareWrapper->getAttributes()); |
|
100 | 100 | |
101 | 101 | $qb->set('file_target', $qb->createNamedParameter($shareWrapper->getFileTarget())) |
102 | 102 | ->set('share_with', $qb->createNamedParameter($shareWrapper->getSharedWith())) |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | ->set('uid_initiator', $qb->createNamedParameter($shareWrapper->getSharedBy())) |
105 | 105 | ->set('accepted', $qb->createNamedParameter(IShare::STATUS_ACCEPTED)) |
106 | 106 | ->set('permissions', $qb->createNamedParameter($shareWrapper->getPermissions())) |
107 | - ->set('attributes', $qb->createNamedParameter($shareAttributes)); |
|
107 | + ->set('attributes', $qb->createNamedParameter($shareAttributes)); |
|
108 | 108 | |
109 | 109 | |
110 | 110 | $qb->limitToId((int)$shareWrapper->getId()); |
@@ -493,23 +493,23 @@ discard block |
||
493 | 493 | } |
494 | 494 | |
495 | 495 | |
496 | - /** |
|
497 | - * Format IAttributes to database format (JSON string) |
|
498 | - * based on OC\Share20\DefaultShareProvider::formatShareAttributes(); |
|
499 | - */ |
|
500 | - private function formatShareAttributes(?IAttributes $attributes): ?string { |
|
501 | - if ($attributes === null || empty($attributes->toArray())) { |
|
502 | - return null; |
|
503 | - } |
|
504 | - |
|
505 | - $compressedAttributes = []; |
|
506 | - foreach ($attributes->toArray() as $attribute) { |
|
507 | - $compressedAttributes[] = [ |
|
508 | - 0 => $attribute['scope'], |
|
509 | - 1 => $attribute['key'], |
|
510 | - 2 => $attribute['enabled'] |
|
511 | - ]; |
|
512 | - } |
|
513 | - return \json_encode($compressedAttributes); |
|
514 | - } |
|
496 | + /** |
|
497 | + * Format IAttributes to database format (JSON string) |
|
498 | + * based on OC\Share20\DefaultShareProvider::formatShareAttributes(); |
|
499 | + */ |
|
500 | + private function formatShareAttributes(?IAttributes $attributes): ?string { |
|
501 | + if ($attributes === null || empty($attributes->toArray())) { |
|
502 | + return null; |
|
503 | + } |
|
504 | + |
|
505 | + $compressedAttributes = []; |
|
506 | + foreach ($attributes->toArray() as $attribute) { |
|
507 | + $compressedAttributes[] = [ |
|
508 | + 0 => $attribute['scope'], |
|
509 | + 1 => $attribute['key'], |
|
510 | + 2 => $attribute['enabled'] |
|
511 | + ]; |
|
512 | + } |
|
513 | + return \json_encode($compressedAttributes); |
|
514 | + } |
|
515 | 515 | } |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | */ |
216 | 216 | public function limitToCreation(int $delay = 0): self { |
217 | 217 | $date = new DateTime('now'); |
218 | - $date->sub(new DateInterval('PT' . $delay . 'M')); |
|
218 | + $date->sub(new DateInterval('PT'.$delay.'M')); |
|
219 | 219 | |
220 | 220 | $this->limitToDBFieldDateTime('creation', $date, true); |
221 | 221 | |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | $expr = $this->expr(); |
233 | 233 | $pf = ($this->getType() === DBALQueryBuilder::SELECT) ? $this->getDefaultSelectAlias() |
234 | 234 | . '.' : ''; |
235 | - $field = $pf . $field; |
|
235 | + $field = $pf.$field; |
|
236 | 236 | |
237 | 237 | $orX = $expr->orX(); |
238 | 238 | $orX->add( |
@@ -262,8 +262,8 @@ discard block |
||
262 | 262 | } |
263 | 263 | |
264 | 264 | $expr = $this->expr(); |
265 | - $pf = ($this->getType() === DBALQueryBuilder::SELECT) ? $this->getDefaultSelectAlias() . '.' : ''; |
|
266 | - $field = $pf . $field; |
|
265 | + $pf = ($this->getType() === DBALQueryBuilder::SELECT) ? $this->getDefaultSelectAlias().'.' : ''; |
|
266 | + $field = $pf.$field; |
|
267 | 267 | |
268 | 268 | $orX = $expr->orX(); |
269 | 269 | $orX->add( |
@@ -281,8 +281,8 @@ discard block |
||
281 | 281 | public function searchInDBField(string $field, string $value): void { |
282 | 282 | $expr = $this->expr(); |
283 | 283 | |
284 | - $pf = ($this->getType() === DBALQueryBuilder::SELECT) ? $this->getDefaultSelectAlias() . '.' : ''; |
|
285 | - $field = $pf . $field; |
|
284 | + $pf = ($this->getType() === DBALQueryBuilder::SELECT) ? $this->getDefaultSelectAlias().'.' : ''; |
|
285 | + $field = $pf.$field; |
|
286 | 286 | |
287 | 287 | $this->andWhere($expr->iLike($field, $this->createNamedParameter($value))); |
288 | 288 | } |
@@ -404,7 +404,7 @@ discard block |
||
404 | 404 | */ |
405 | 405 | public function exprLike(string $field, string $value, string $alias = '', bool $cs = true): string { |
406 | 406 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
407 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
407 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
408 | 408 | } |
409 | 409 | |
410 | 410 | $expr = $this->expr(); |
@@ -417,7 +417,7 @@ discard block |
||
417 | 417 | |
418 | 418 | public function exprLimit(string $field, string $value, string $alias = '', bool $cs = true): string { |
419 | 419 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
420 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
420 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
421 | 421 | } |
422 | 422 | |
423 | 423 | $expr = $this->expr(); |
@@ -435,7 +435,7 @@ discard block |
||
435 | 435 | |
436 | 436 | public function exprLimitInt(string $field, int $value, string $alias = ''): string { |
437 | 437 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
438 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
438 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
439 | 439 | } |
440 | 440 | |
441 | 441 | $expr = $this->expr(); |
@@ -453,7 +453,7 @@ discard block |
||
453 | 453 | */ |
454 | 454 | public function exprLimitBool(string $field, bool $value, string $alias = ''): string { |
455 | 455 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
456 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
456 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
457 | 457 | } |
458 | 458 | |
459 | 459 | $expr = $this->expr(); |
@@ -474,7 +474,7 @@ discard block |
||
474 | 474 | string $alias = '' |
475 | 475 | ): ICompositeExpression { |
476 | 476 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
477 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
477 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
478 | 478 | } |
479 | 479 | |
480 | 480 | $expr = $this->expr(); |
@@ -500,7 +500,7 @@ discard block |
||
500 | 500 | string $alias = '' |
501 | 501 | ): ICompositeExpression { |
502 | 502 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
503 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
503 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
504 | 504 | } |
505 | 505 | |
506 | 506 | $expr = $this->expr(); |
@@ -529,7 +529,7 @@ discard block |
||
529 | 529 | bool $cs = true |
530 | 530 | ): ICompositeExpression { |
531 | 531 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
532 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
532 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
533 | 533 | } |
534 | 534 | |
535 | 535 | $andX = $this->expr()->andX(); |
@@ -554,7 +554,7 @@ discard block |
||
554 | 554 | */ |
555 | 555 | public function exprLimitInArray(string $field, array $values, string $alias = ''): string { |
556 | 556 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
557 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
557 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
558 | 558 | } |
559 | 559 | |
560 | 560 | $expr = $this->expr(); |
@@ -572,7 +572,7 @@ discard block |
||
572 | 572 | */ |
573 | 573 | public function exprLimitBitwise(string $field, int $flag, string $alias = ''): string { |
574 | 574 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
575 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
575 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
576 | 576 | } |
577 | 577 | |
578 | 578 | $expr = $this->expr(); |
@@ -594,7 +594,7 @@ discard block |
||
594 | 594 | */ |
595 | 595 | public function exprLt(string $field, int $value, bool $lte = false, string $alias = ''): string { |
596 | 596 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
597 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
597 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
598 | 598 | } |
599 | 599 | |
600 | 600 | $expr = $this->expr(); |
@@ -616,7 +616,7 @@ discard block |
||
616 | 616 | */ |
617 | 617 | public function exprGt(string $field, int $value, bool $gte = false, string $alias = ''): string { |
618 | 618 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
619 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
619 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
620 | 620 | } |
621 | 621 | |
622 | 622 | $expr = $this->expr(); |
@@ -725,7 +725,7 @@ discard block |
||
725 | 725 | */ |
726 | 726 | public function exprUnlike(string $field, string $value, string $alias = '', bool $cs = true): string { |
727 | 727 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
728 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
728 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
729 | 729 | } |
730 | 730 | |
731 | 731 | $expr = $this->expr(); |
@@ -749,7 +749,7 @@ discard block |
||
749 | 749 | */ |
750 | 750 | public function exprFilter(string $field, string $value, string $alias = '', bool $cs = true): string { |
751 | 751 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
752 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
752 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
753 | 753 | } |
754 | 754 | |
755 | 755 | $expr = $this->expr(); |
@@ -775,7 +775,7 @@ discard block |
||
775 | 775 | */ |
776 | 776 | public function exprFilterInt(string $field, int $value, string $alias = ''): string { |
777 | 777 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
778 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
778 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
779 | 779 | } |
780 | 780 | |
781 | 781 | $expr = $this->expr(); |
@@ -793,7 +793,7 @@ discard block |
||
793 | 793 | */ |
794 | 794 | public function exprFilterBool(string $field, bool $value, string $alias = ''): string { |
795 | 795 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
796 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
796 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
797 | 797 | } |
798 | 798 | |
799 | 799 | $expr = $this->expr(); |
@@ -814,7 +814,7 @@ discard block |
||
814 | 814 | string $alias = '' |
815 | 815 | ): ICompositeExpression { |
816 | 816 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
817 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
817 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
818 | 818 | } |
819 | 819 | |
820 | 820 | $expr = $this->expr(); |
@@ -840,7 +840,7 @@ discard block |
||
840 | 840 | string $alias = '' |
841 | 841 | ): ICompositeExpression { |
842 | 842 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
843 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
843 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
844 | 844 | } |
845 | 845 | |
846 | 846 | $expr = $this->expr(); |
@@ -869,7 +869,7 @@ discard block |
||
869 | 869 | bool $cs = true |
870 | 870 | ): ICompositeExpression { |
871 | 871 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
872 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
872 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
873 | 873 | } |
874 | 874 | |
875 | 875 | $orX = $this->expr()->orX(); |
@@ -894,7 +894,7 @@ discard block |
||
894 | 894 | */ |
895 | 895 | public function exprFilterInArray(string $field, array $values, string $alias = ''): string { |
896 | 896 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
897 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
897 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
898 | 898 | } |
899 | 899 | |
900 | 900 | $expr = $this->expr(); |
@@ -912,7 +912,7 @@ discard block |
||
912 | 912 | */ |
913 | 913 | public function exprFilterBitwise(string $field, int $flag, string $alias = ''): string { |
914 | 914 | if ($this->getType() === DBALQueryBuilder::SELECT) { |
915 | - $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias) . '.' . $field; |
|
915 | + $field = (($alias === '') ? $this->getDefaultSelectAlias() : $alias).'.'.$field; |
|
916 | 916 | } |
917 | 917 | |
918 | 918 | $expr = $this->expr(); |
@@ -1073,12 +1073,12 @@ discard block |
||
1073 | 1073 | string $alias = '' |
1074 | 1074 | ): self { |
1075 | 1075 | $selectFields = array_map( |
1076 | - function (string $item) use ($alias) { |
|
1076 | + function(string $item) use ($alias) { |
|
1077 | 1077 | if ($alias === '') { |
1078 | 1078 | return $item; |
1079 | 1079 | } |
1080 | 1080 | |
1081 | - return $alias . '.' . $item; |
|
1081 | + return $alias.'.'.$item; |
|
1082 | 1082 | }, $fields |
1083 | 1083 | ); |
1084 | 1084 | |
@@ -1104,13 +1104,13 @@ discard block |
||
1104 | 1104 | string $prefix, |
1105 | 1105 | array $default = [] |
1106 | 1106 | ): self { |
1107 | - $prefix = trim($prefix) . '_'; |
|
1107 | + $prefix = trim($prefix).'_'; |
|
1108 | 1108 | foreach ($default as $k => $v) { |
1109 | - $this->addDefaultValue($prefix . $k, (string)$v); |
|
1109 | + $this->addDefaultValue($prefix.$k, (string)$v); |
|
1110 | 1110 | } |
1111 | 1111 | |
1112 | 1112 | foreach ($fields as $field) { |
1113 | - $this->selectAlias($alias . '.' . $field, $prefix . $field); |
|
1113 | + $this->selectAlias($alias.'.'.$field, $prefix.$field); |
|
1114 | 1114 | } |
1115 | 1115 | |
1116 | 1116 | return $this; |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | * @throws SingleCircleNotFoundException |
247 | 247 | */ |
248 | 248 | public function syncNextcloudUser(string $userId): FederatedUser { |
249 | - $this->outputService->output('Syncing Nextcloud Account \'' . $userId . '\'', true); |
|
249 | + $this->outputService->output('Syncing Nextcloud Account \''.$userId.'\'', true); |
|
250 | 250 | |
251 | 251 | return $this->federatedUserService->getLocalFederatedUser($userId); |
252 | 252 | } |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | * @throws RequestBuilderException |
291 | 291 | */ |
292 | 292 | public function syncNextcloudGroup(string $groupId): Circle { |
293 | - $this->outputService->output('Syncing Nextcloud Group \'' . $groupId . '\'', true); |
|
293 | + $this->outputService->output('Syncing Nextcloud Group \''.$groupId.'\'', true); |
|
294 | 294 | |
295 | 295 | $circle = $this->federatedUserService->getGroupCircle($groupId); |
296 | 296 | $group = $this->groupManager->get($groupId); |
@@ -363,7 +363,7 @@ discard block |
||
363 | 363 | */ |
364 | 364 | public function groupDeleted(string $groupId): void { |
365 | 365 | $circle = new Circle(); |
366 | - $circle->setName('group:' . $groupId) |
|
366 | + $circle->setName('group:'.$groupId) |
|
367 | 367 | ->setConfig(Circle::CFG_SYSTEM | Circle::CFG_NO_OWNER | Circle::CFG_HIDDEN) |
368 | 368 | ->setSource(Member::TYPE_GROUP); |
369 | 369 |
@@ -580,7 +580,7 @@ discard block |
||
580 | 580 | |
581 | 581 | $i = 1; |
582 | 582 | while (true) { |
583 | - $testDisplayName = $baseDisplayName . (($i > 1) ? ' (' . $i . ')' : ''); |
|
583 | + $testDisplayName = $baseDisplayName.(($i > 1) ? ' ('.$i.')' : ''); |
|
584 | 584 | $test = new Circle(); |
585 | 585 | $test->setDisplayName($testDisplayName); |
586 | 586 | |
@@ -613,7 +613,7 @@ discard block |
||
613 | 613 | |
614 | 614 | $i = 1; |
615 | 615 | while (true) { |
616 | - $testSanitizedName = $baseSanitizedName . (($i > 1) ? ' (' . $i . ')' : ''); |
|
616 | + $testSanitizedName = $baseSanitizedName.(($i > 1) ? ' ('.$i.')' : ''); |
|
617 | 617 | |
618 | 618 | $test = new Circle(); |
619 | 619 | $test->setSanitizedName($testSanitizedName); |
@@ -755,7 +755,7 @@ discard block |
||
755 | 755 | |
756 | 756 | |
757 | 757 | private function generateGetCirclesCacheKey(FederatedUser $federatedUser, string $probeSum): string { |
758 | - return $federatedUser->getSingleId() . '#' . $probeSum; |
|
758 | + return $federatedUser->getSingleId().'#'.$probeSum; |
|
759 | 759 | } |
760 | 760 | |
761 | 761 |
@@ -446,7 +446,7 @@ discard block |
||
446 | 446 | |
447 | 447 | return array_filter( |
448 | 448 | array_map( |
449 | - function (ShareWrapper $wrapper) { |
|
449 | + function(ShareWrapper $wrapper) { |
|
450 | 450 | return $wrapper->getShare($this->rootFolder, $this->userManager, $this->urlGenerator); |
451 | 451 | }, $wrappedShares |
452 | 452 | ) |
@@ -498,7 +498,7 @@ discard block |
||
498 | 498 | |
499 | 499 | return array_filter( |
500 | 500 | array_map( |
501 | - function (ShareWrapper $wrapper) { |
|
501 | + function(ShareWrapper $wrapper) { |
|
502 | 502 | return $wrapper->getShare($this->rootFolder, $this->userManager, $this->urlGenerator); |
503 | 503 | }, $wrappedShares |
504 | 504 | ) |
@@ -547,7 +547,7 @@ discard block |
||
547 | 547 | |
548 | 548 | return array_filter( |
549 | 549 | array_map( |
550 | - function (ShareWrapper $wrapper) { |
|
550 | + function(ShareWrapper $wrapper) { |
|
551 | 551 | return $wrapper->getShare( |
552 | 552 | $this->rootFolder, $this->userManager, $this->urlGenerator, true |
553 | 553 | ); |
@@ -578,7 +578,7 @@ discard block |
||
578 | 578 | |
579 | 579 | $share = $wrappedShare->getShare($this->rootFolder, $this->userManager, $this->urlGenerator); |
580 | 580 | if ($share->getPassword() !== '') { |
581 | - $this->logger->notice('share is protected by a password, hash: ' . $share->getPassword()); |
|
581 | + $this->logger->notice('share is protected by a password, hash: '.$share->getPassword()); |
|
582 | 582 | } |
583 | 583 | |
584 | 584 | return $share; |
@@ -225,9 +225,9 @@ |
||
225 | 225 | public function update(IShare $share): IShare { |
226 | 226 | $wrappedShare = $this->shareWrapperService->getShareById((int)$share->getId()); |
227 | 227 | $wrappedShare->setPermissions($share->getPermissions()) |
228 | - ->setShareOwner($share->getShareOwner()) |
|
229 | - ->setAttributes($share->getAttributes()) |
|
230 | - ->setSharedBy($share->getSharedBy()); |
|
228 | + ->setShareOwner($share->getShareOwner()) |
|
229 | + ->setAttributes($share->getAttributes()) |
|
230 | + ->setSharedBy($share->getSharedBy()); |
|
231 | 231 | |
232 | 232 | $this->shareWrapperService->update($wrappedShare); |
233 | 233 |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | throw new Exception('Please specify a --type for the test'); |
178 | 178 | } |
179 | 179 | if ($test !== '' && !in_array($type, self::$checks)) { |
180 | - throw new Exception('Unknown type: ' . implode(', ', self::$checks)); |
|
180 | + throw new Exception('Unknown type: '.implode(', ', self::$checks)); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | // $this->configService->setAppValue(ConfigService::TEST_NC_BASE, $test); |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | } |
236 | 236 | |
237 | 237 | $output->writeln(''); |
238 | - $output->writeln('* testing current address: ' . $test); |
|
238 | + $output->writeln('* testing current address: '.$test); |
|
239 | 239 | |
240 | 240 | try { |
241 | 241 | $this->setupLoopback($input, $output, $test); |
@@ -271,8 +271,8 @@ discard block |
||
271 | 271 | continue; |
272 | 272 | } |
273 | 273 | |
274 | - $loopback = rtrim($scheme . '://' . $cloudId . $path, '/'); |
|
275 | - $output->writeln('* testing address: ' . $loopback . ' '); |
|
274 | + $loopback = rtrim($scheme.'://'.$cloudId.$path, '/'); |
|
275 | + $output->writeln('* testing address: '.$loopback.' '); |
|
276 | 276 | |
277 | 277 | try { |
278 | 278 | $this->setupLoopback($input, $output, $loopback); |
@@ -345,8 +345,8 @@ discard block |
||
345 | 345 | $test = new FederatedEvent(LoopbackTest::class); |
346 | 346 | $this->federatedEventService->newEvent($test); |
347 | 347 | $output->writeln( |
348 | - '<info>' . $test->getWrapperToken() . '</info> ' . |
|
349 | - '(took ' . (round(microtime(true) * 1000) - $timer) . 'ms)' |
|
348 | + '<info>'.$test->getWrapperToken().'</info> '. |
|
349 | + '(took '.(round(microtime(true) * 1000) - $timer).'ms)' |
|
350 | 350 | ); |
351 | 351 | |
352 | 352 | $output->writeln('- Waiting for async process to finish (5s)'); |
@@ -365,18 +365,18 @@ discard block |
||
365 | 365 | |
366 | 366 | $checkVerify = $wrapper->getEvent()->getData()->gInt('verify'); |
367 | 367 | if ($checkVerify === LoopbackTest::VERIFY) { |
368 | - $output->write('<info>verify=' . $checkVerify . '</info> '); |
|
368 | + $output->write('<info>verify='.$checkVerify.'</info> '); |
|
369 | 369 | } else { |
370 | - $output->writeln('<error>verify=' . $checkVerify . '</error>'); |
|
370 | + $output->writeln('<error>verify='.$checkVerify.'</error>'); |
|
371 | 371 | |
372 | 372 | return false; |
373 | 373 | } |
374 | 374 | |
375 | 375 | $checkManage = $wrapper->getResult()->gInt('manage'); |
376 | 376 | if ($checkManage === LoopbackTest::MANAGE) { |
377 | - $output->write('<info>manage=' . $checkManage . '</info> '); |
|
377 | + $output->write('<info>manage='.$checkManage.'</info> '); |
|
378 | 378 | } else { |
379 | - $output->writeln('<error>manage=' . $checkManage . '</error>'); |
|
379 | + $output->writeln('<error>manage='.$checkManage.'</error>'); |
|
380 | 380 | |
381 | 381 | return false; |
382 | 382 | } |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | $this->configService->setAppValue(ConfigService::LOOPBACK_CLOUD_ID, $cloudId); |
416 | 416 | $this->configService->setAppValue(ConfigService::LOOPBACK_CLOUD_PATH, $path); |
417 | 417 | $output->writeln( |
418 | - '- Address <info>' . $loopback . '</info> is now used as <info>loopback</info>' |
|
418 | + '- Address <info>'.$loopback.'</info> is now used as <info>loopback</info>' |
|
419 | 419 | ); |
420 | 420 | } |
421 | 421 | |
@@ -467,8 +467,8 @@ discard block |
||
467 | 467 | continue; |
468 | 468 | } |
469 | 469 | |
470 | - $internal = rtrim($scheme . '://' . $cloudId, '/'); |
|
471 | - $fullInternal = rtrim($scheme . '://' . $cloudId . $path, '/'); |
|
470 | + $internal = rtrim($scheme.'://'.$cloudId, '/'); |
|
471 | + $fullInternal = rtrim($scheme.'://'.$cloudId.$path, '/'); |
|
472 | 472 | |
473 | 473 | $question = new ConfirmationQuestion( |
474 | 474 | '<comment>Do you want to check the validity of this internal address?</comment> (Y/n) ', true, |
@@ -487,9 +487,9 @@ discard block |
||
487 | 487 | 'You will need to run this <info>curl</info> command from a terminal on your local network and paste its result: ' |
488 | 488 | ); |
489 | 489 | $output->writeln( |
490 | - ' curl -L "' . $internal |
|
490 | + ' curl -L "'.$internal |
|
491 | 491 | . '/.well-known/webfinger?resource=http://nextcloud.com/&test=' |
492 | - . $testToken . '"' |
|
492 | + . $testToken.'"' |
|
493 | 493 | ); |
494 | 494 | |
495 | 495 | $output->writeln('paste the result here: '); |
@@ -523,7 +523,7 @@ discard block |
||
523 | 523 | |
524 | 524 | if ($pastedHref !== $href) { |
525 | 525 | $output->writeln( |
526 | - '<error>The returned data (' . $pastedHref . ') are not the one expected: </error>' |
|
526 | + '<error>The returned data ('.$pastedHref.') are not the one expected: </error>' |
|
527 | 527 | . $href |
528 | 528 | ); |
529 | 529 | continue; |
@@ -535,7 +535,7 @@ discard block |
||
535 | 535 | 'Next step, please run this <info>curl</info> command from a terminal on your local network and paste its result: ' |
536 | 536 | ); |
537 | 537 | $output->writeln( |
538 | - ' curl -L "' . $pastedHref . '?test=' . $testToken . '" -H "Accept: application/json"' |
|
538 | + ' curl -L "'.$pastedHref.'?test='.$testToken.'" -H "Accept: application/json"' |
|
539 | 539 | ); |
540 | 540 | |
541 | 541 | $output->writeln('paste the result here: '); |
@@ -552,9 +552,9 @@ discard block |
||
552 | 552 | || $appSignatory->getRoot() !== $pastedSignatory->g('root')) { |
553 | 553 | $output->writeln( |
554 | 554 | '<error>The returned data (' |
555 | - . $pastedSignatory->g('uid') . '/' . $pastedSignatory->g('root') |
|
555 | + . $pastedSignatory->g('uid').'/'.$pastedSignatory->g('root') |
|
556 | 556 | . ') are not the one expected: </error>' |
557 | - . $appSignatory->getUid(true) . '/' . $appSignatory->getRoot() |
|
557 | + . $appSignatory->getUid(true).'/'.$appSignatory->getRoot() |
|
558 | 558 | ); |
559 | 559 | continue; |
560 | 560 | } |
@@ -581,7 +581,7 @@ discard block |
||
581 | 581 | |
582 | 582 | $output->writeln(''); |
583 | 583 | $question = new ConfirmationQuestion( |
584 | - '- Do you want to save <info>' . $internal |
|
584 | + '- Do you want to save <info>'.$internal |
|
585 | 585 | . '</info> as your <info>internal</info> address ? (y/N) ', |
586 | 586 | false, '/^(y|Y)/i' |
587 | 587 | ); |
@@ -597,7 +597,7 @@ discard block |
||
597 | 597 | $this->configService->setAppValue(ConfigService::INTERNAL_CLOUD_ID, $cloudId); |
598 | 598 | $this->configService->setAppValue(ConfigService::INTERNAL_CLOUD_PATH, $path); |
599 | 599 | |
600 | - $output->writeln('- Address <info>' . $internal . '</info> is now used as <info>internal</info>'); |
|
600 | + $output->writeln('- Address <info>'.$internal.'</info> is now used as <info>internal</info>'); |
|
601 | 601 | } |
602 | 602 | |
603 | 603 | |
@@ -649,8 +649,8 @@ discard block |
||
649 | 649 | continue; |
650 | 650 | } |
651 | 651 | |
652 | - $frontal = rtrim($scheme . '://' . $cloudId, '/'); |
|
653 | - $fullFrontal = rtrim($scheme . '://' . $cloudId . $path, '/'); |
|
652 | + $frontal = rtrim($scheme.'://'.$cloudId, '/'); |
|
653 | + $fullFrontal = rtrim($scheme.'://'.$cloudId.$path, '/'); |
|
654 | 654 | |
655 | 655 | $question = new ConfirmationQuestion( |
656 | 656 | '<comment>Do you want to check the validity of this frontal address?</comment> (y/N) ', false, |
@@ -669,9 +669,9 @@ discard block |
||
669 | 669 | 'You will need to run this <info>curl</info> command from a remote terminal and paste its result: ' |
670 | 670 | ); |
671 | 671 | $output->writeln( |
672 | - ' curl -L "' . $frontal |
|
672 | + ' curl -L "'.$frontal |
|
673 | 673 | . '/.well-known/webfinger?resource=http://nextcloud.com/&test=' |
674 | - . $testToken . '"' |
|
674 | + . $testToken.'"' |
|
675 | 675 | ); |
676 | 676 | |
677 | 677 | |
@@ -706,7 +706,7 @@ discard block |
||
706 | 706 | |
707 | 707 | if ($pastedHref !== $href) { |
708 | 708 | $output->writeln( |
709 | - '<error>The returned data (' . $pastedHref . ') are not the one expected: </error>' |
|
709 | + '<error>The returned data ('.$pastedHref.') are not the one expected: </error>' |
|
710 | 710 | . $href |
711 | 711 | ); |
712 | 712 | continue; |
@@ -718,7 +718,7 @@ discard block |
||
718 | 718 | 'Next step, please run this <info>curl</info> command from a remote terminal and paste its result: ' |
719 | 719 | ); |
720 | 720 | $output->writeln( |
721 | - ' curl -L "' . $pastedHref . '?test=' . $testToken . '" -H "Accept: application/json"' |
|
721 | + ' curl -L "'.$pastedHref.'?test='.$testToken.'" -H "Accept: application/json"' |
|
722 | 722 | ); |
723 | 723 | |
724 | 724 | $output->writeln('paste the result here: '); |
@@ -736,9 +736,9 @@ discard block |
||
736 | 736 | || $appSignatory->getRoot() !== $pastedSignatory->g('root')) { |
737 | 737 | $output->writeln( |
738 | 738 | '<error>The returned data (' |
739 | - . $pastedSignatory->g('uid') . '/' . $pastedSignatory->g('root') |
|
739 | + . $pastedSignatory->g('uid').'/'.$pastedSignatory->g('root') |
|
740 | 740 | . ') are not the one expected: </error>' |
741 | - . $appSignatory->getUid(true) . '/' . $appSignatory->getRoot() |
|
741 | + . $appSignatory->getUid(true).'/'.$appSignatory->getRoot() |
|
742 | 742 | ); |
743 | 743 | continue; |
744 | 744 | } |
@@ -765,7 +765,7 @@ discard block |
||
765 | 765 | |
766 | 766 | $output->writeln(''); |
767 | 767 | $question = new ConfirmationQuestion( |
768 | - '- Do you want to save <info>' . $frontal |
|
768 | + '- Do you want to save <info>'.$frontal |
|
769 | 769 | . '</info> as your <info>frontal</info> address ? (y/N) ', |
770 | 770 | false, '/^(y|Y)/i' |
771 | 771 | ); |
@@ -781,7 +781,7 @@ discard block |
||
781 | 781 | $this->configService->setAppValue(ConfigService::FRONTAL_CLOUD_ID, $cloudId); |
782 | 782 | $this->configService->setAppValue(ConfigService::FRONTAL_CLOUD_PATH, $path); |
783 | 783 | |
784 | - $output->writeln('- Address <info>' . $frontal . '</info> is now used as <info>frontal</info>'); |
|
784 | + $output->writeln('- Address <info>'.$frontal.'</info> is now used as <info>frontal</info>'); |
|
785 | 785 | } |
786 | 786 | |
787 | 787 | |
@@ -807,7 +807,7 @@ discard block |
||
807 | 807 | $request->setDataSerialize(new SimpleDataStore(['empty' => 1])); |
808 | 808 | } |
809 | 809 | |
810 | - $output->write('- ' . $type . ' request on ' . $request->getCompleteUrl() . ': '); |
|
810 | + $output->write('- '.$type.' request on '.$request->getCompleteUrl().': '); |
|
811 | 811 | |
812 | 812 | try { |
813 | 813 | $this->doRequest($request); |
@@ -818,7 +818,7 @@ discard block |
||
818 | 818 | $color = 'info'; |
819 | 819 | } |
820 | 820 | |
821 | - $output->writeln('<' . $color . '>' . $result->getStatusCode() . '</' . $color . '>'); |
|
821 | + $output->writeln('<'.$color.'>'.$result->getStatusCode().'</'.$color.'>'); |
|
822 | 822 | if ($result->getStatusCode() === 200) { |
823 | 823 | return true; |
824 | 824 | } |
@@ -842,7 +842,7 @@ discard block |
||
842 | 842 | |
843 | 843 | $output->writeln(''); |
844 | 844 | $output->writeln( |
845 | - 'The address <info>' . $address . '</info> seems to reach your local Nextcloud.' |
|
845 | + 'The address <info>'.$address.'</info> seems to reach your local Nextcloud.' |
|
846 | 846 | ); |
847 | 847 | |
848 | 848 | $helper = $this->getHelper('question'); |
@@ -859,8 +859,8 @@ discard block |
||
859 | 859 | |
860 | 860 | $this->configService->setAppValue(ConfigService::FORCE_NC_BASE, $address); |
861 | 861 | $output->writeln( |
862 | - 'New configuration <info>' . Application::APP_ID . '.' . ConfigService::FORCE_NC_BASE . '=\'' |
|
863 | - . $address . '\'</info> stored in database' |
|
862 | + 'New configuration <info>'.Application::APP_ID.'.'.ConfigService::FORCE_NC_BASE.'=\'' |
|
863 | + . $address.'\'</info> stored in database' |
|
864 | 864 | ); |
865 | 865 | } |
866 | 866 | |
@@ -888,7 +888,7 @@ discard block |
||
888 | 888 | $path = rtrim($path, '/'); |
889 | 889 | |
890 | 890 | if (!is_null($cloudIdPort)) { |
891 | - $cloudId = $cloudId . ':' . $cloudIdPort; |
|
891 | + $cloudId = $cloudId.':'.$cloudIdPort; |
|
892 | 892 | } |
893 | 893 | |
894 | 894 | return [$scheme, $cloudId, $path]; |