@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | } catch (FederatedItemException $e) { |
140 | 140 | if ($input->getOption('status-code')) { |
141 | 141 | throw new FederatedItemException( |
142 | - ' [' . get_class($e) . ', ' . $e->getStatus() . ']' . "\n" . $e->getMessage() |
|
142 | + ' ['.get_class($e).', '.$e->getStatus().']'."\n".$e->getMessage() |
|
143 | 143 | ); |
144 | 144 | } |
145 | 145 | |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | $instance = $host; |
198 | 198 | } |
199 | 199 | |
200 | - $result[] = $user['userid']['value'] . ' <info>@' . $host . '</info>'; |
|
200 | + $result[] = $user['userid']['value'].' <info>@'.$host.'</info>'; |
|
201 | 201 | } |
202 | 202 | |
203 | 203 | // if ($userId === '') { |
@@ -194,7 +194,7 @@ |
||
194 | 194 | throw new OCSException('works only from local instance', 404); |
195 | 195 | } |
196 | 196 | |
197 | - $userId = $currentUser->getUserId() . '/' . $userId; |
|
197 | + $userId = $currentUser->getUserId().'/'.$userId; |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | $federatedUser = $this->federatedUserService->generateFederatedUser($userId, $type); |
@@ -109,7 +109,7 @@ |
||
109 | 109 | * @return string |
110 | 110 | */ |
111 | 111 | protected function stripPath($path) { |
112 | - $prefix = '/' . $this->userId . '/files'; |
|
112 | + $prefix = '/'.$this->userId.'/files'; |
|
113 | 113 | |
114 | 114 | return rtrim(substr($path, strlen($prefix)), '/'); |
115 | 115 | } |
@@ -190,7 +190,7 @@ |
||
190 | 190 | return $this->mountPoint; |
191 | 191 | } |
192 | 192 | |
193 | - return '/' . $this->getInitiator()->getUserId() . '/files/' . ltrim($this->mountPoint, '/'); |
|
193 | + return '/'.$this->getInitiator()->getUserId().'/files/'.ltrim($this->mountPoint, '/'); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | /** |
@@ -504,29 +504,29 @@ |
||
504 | 504 | * @throws FileCacheNotFoundException |
505 | 505 | */ |
506 | 506 | public function importFromDatabase(array $data, string $prefix = ''): INC22QueryRow { |
507 | - if ($this->getInt($prefix . 'fileid', $data) === 0) { |
|
507 | + if ($this->getInt($prefix.'fileid', $data) === 0) { |
|
508 | 508 | throw new FileCacheNotFoundException(); |
509 | 509 | } |
510 | 510 | |
511 | - $this->setId($this->getInt($prefix . 'fileid', $data)); |
|
512 | - $this->setPath($this->get($prefix . 'path', $data)); |
|
513 | - $this->setPermissions($this->getInt($prefix . 'permissions', $data)); |
|
514 | - $this->setStorageId($this->getInt($prefix . 'storage', $data)); |
|
515 | - $this->setPathHash($this->get($prefix . 'path_hash', $data)); |
|
516 | - $this->setParent($this->getInt($prefix . 'parent', $data)); |
|
517 | - $this->setName($this->get($prefix . 'name', $data)); |
|
518 | - $this->setMimeType($this->getInt($prefix . 'mimetype', $data)); |
|
519 | - $this->setMimePart($this->getInt($prefix . 'mimepart', $data)); |
|
520 | - $this->setSize($this->getInt($prefix . 'size', $data)); |
|
521 | - $this->setMTime($this->getInt($prefix . 'mtime', $data)); |
|
522 | - $this->setStorageMTime($this->getInt($prefix . 'storage_mtime', $data)); |
|
523 | - $this->setEncrypted($this->getBool($prefix . 'encrypted', $data)); |
|
524 | - $this->setUnencryptedSize($this->getInt($prefix . 'unencrypted_size', $data)); |
|
525 | - $this->setEtag($this->get($prefix . 'etag', $data)); |
|
526 | - $this->setChecksum($this->get($prefix . 'checksum', $data)); |
|
511 | + $this->setId($this->getInt($prefix.'fileid', $data)); |
|
512 | + $this->setPath($this->get($prefix.'path', $data)); |
|
513 | + $this->setPermissions($this->getInt($prefix.'permissions', $data)); |
|
514 | + $this->setStorageId($this->getInt($prefix.'storage', $data)); |
|
515 | + $this->setPathHash($this->get($prefix.'path_hash', $data)); |
|
516 | + $this->setParent($this->getInt($prefix.'parent', $data)); |
|
517 | + $this->setName($this->get($prefix.'name', $data)); |
|
518 | + $this->setMimeType($this->getInt($prefix.'mimetype', $data)); |
|
519 | + $this->setMimePart($this->getInt($prefix.'mimepart', $data)); |
|
520 | + $this->setSize($this->getInt($prefix.'size', $data)); |
|
521 | + $this->setMTime($this->getInt($prefix.'mtime', $data)); |
|
522 | + $this->setStorageMTime($this->getInt($prefix.'storage_mtime', $data)); |
|
523 | + $this->setEncrypted($this->getBool($prefix.'encrypted', $data)); |
|
524 | + $this->setUnencryptedSize($this->getInt($prefix.'unencrypted_size', $data)); |
|
525 | + $this->setEtag($this->get($prefix.'etag', $data)); |
|
526 | + $this->setChecksum($this->get($prefix.'checksum', $data)); |
|
527 | 527 | |
528 | 528 | // small hack as there is no reason to call a recursive method for a single entry from the table |
529 | - $this->setStorage($this->get($prefix . CoreQueryBuilder::STORAGES . '_id', $data)); |
|
529 | + $this->setStorage($this->get($prefix.CoreQueryBuilder::STORAGES.'_id', $data)); |
|
530 | 530 | |
531 | 531 | return $this; |
532 | 532 | } |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | try { |
105 | 105 | $level = Member::parseLevelString($levelString); |
106 | 106 | } catch (ParseMemberLevelException $e) { |
107 | - throw new MemberHelperException('method ' . $levelString . ' not found'); |
|
107 | + throw new MemberHelperException('method '.$levelString.' not found'); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | $this->mustHaveLevelEqualOrAbove($level); |
@@ -122,11 +122,11 @@ discard block |
||
122 | 122 | try { |
123 | 123 | $level = Member::parseLevelString($levelString); |
124 | 124 | } catch (ParseMemberLevelException $e) { |
125 | - throw new MemberHelperException('method ' . $levelString . ' not found'); |
|
125 | + throw new MemberHelperException('method '.$levelString.' not found'); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | if ($this->member->getLevel() >= $level) { |
129 | - throw new MemberLevelException('Member cannot be ' . $levelString); |
|
129 | + throw new MemberLevelException('Member cannot be '.$levelString); |
|
130 | 130 | } |
131 | 131 | } |
132 | 132 |
@@ -331,19 +331,19 @@ discard block |
||
331 | 331 | */ |
332 | 332 | private function createShare($share) { |
333 | 333 | $this->miscService->log( |
334 | - 'Creating share (1/4) - type: ' . $share->getShareType() . ' - token: ' |
|
335 | - . $share->getToken() . ' - type: ' . $share->getShareType() . ' - with: ' |
|
336 | - . $share->getSharedWith() . ' - permissions: ' . $share->getPermissions(), 0 |
|
334 | + 'Creating share (1/4) - type: '.$share->getShareType().' - token: ' |
|
335 | + . $share->getToken().' - type: '.$share->getShareType().' - with: ' |
|
336 | + . $share->getSharedWith().' - permissions: '.$share->getPermissions(), 0 |
|
337 | 337 | ); |
338 | 338 | |
339 | 339 | $qb = $this->getBaseInsertSql($share); |
340 | - $this->miscService->log('Share creation (2/4) : ' . json_encode($qb->getSQL()), 0); |
|
340 | + $this->miscService->log('Share creation (2/4) : '.json_encode($qb->getSQL()), 0); |
|
341 | 341 | |
342 | 342 | $result = $qb->execute(); |
343 | - $this->miscService->log('Share creation result (3/4) : ' . json_encode($result), 0); |
|
343 | + $this->miscService->log('Share creation result (3/4) : '.json_encode($result), 0); |
|
344 | 344 | |
345 | 345 | $id = $qb->getLastInsertId(); |
346 | - $this->miscService->log('Share created ID (4/4) : ' . $id, 0); |
|
346 | + $this->miscService->log('Share created ID (4/4) : '.$id, 0); |
|
347 | 347 | |
348 | 348 | try { |
349 | 349 | $share->setId($id); |
@@ -590,7 +590,7 @@ discard block |
||
590 | 590 | \OC::$server->getLogger()->log(3, 'deprecated>getShareByToken'); |
591 | 591 | $qb = $this->dbConnection->getQueryBuilder(); |
592 | 592 | |
593 | - $this->miscService->log("Opening share by token '#" . $token . "'", 0); |
|
593 | + $this->miscService->log("Opening share by token '#".$token."'", 0); |
|
594 | 594 | |
595 | 595 | $cursor = $qb->select('*') |
596 | 596 | ->from('share') |
@@ -614,7 +614,7 @@ discard block |
||
614 | 614 | try { |
615 | 615 | $data = $this->getShareByPersonalToken($token); |
616 | 616 | } catch (Exception $e) { |
617 | - $this->miscService->log("Share '#" . $token . "' not found.", 0); |
|
617 | + $this->miscService->log("Share '#".$token."' not found.", 0); |
|
618 | 618 | throw new ShareNotFound('Share not found', $this->l10n->t('Could not find share')); |
619 | 619 | } |
620 | 620 | } |
@@ -623,7 +623,7 @@ discard block |
||
623 | 623 | $share = $this->createShareObject($data); |
624 | 624 | } catch (InvalidShare $e) { |
625 | 625 | $this->miscService->log( |
626 | - "Share Object '#" . $token . "' not created. " . json_encode($data), 0 |
|
626 | + "Share Object '#".$token."' not created. ".json_encode($data), 0 |
|
627 | 627 | ); |
628 | 628 | throw new ShareNotFound('Share not found', $this->l10n->t('Could not find share')); |
629 | 629 | } |
@@ -125,7 +125,7 @@ |
||
125 | 125 | } catch (FederatedItemException $e) { |
126 | 126 | if ($input->getOption('status-code')) { |
127 | 127 | throw new FederatedItemException( |
128 | - ' [' . get_class($e) . ', ' . $e->getStatus() . ']' . "\n" . $e->getMessage() |
|
128 | + ' ['.get_class($e).', '.$e->getStatus().']'."\n".$e->getMessage() |
|
129 | 129 | ); |
130 | 130 | } |
131 | 131 |
@@ -125,7 +125,7 @@ |
||
125 | 125 | } catch (FederatedItemException $e) { |
126 | 126 | if ($input->getOption('status-code')) { |
127 | 127 | throw new FederatedItemException( |
128 | - ' [' . get_class($e) . ', ' . $e->getStatus() . ']' . "\n" . $e->getMessage() |
|
128 | + ' ['.get_class($e).', '.$e->getStatus().']'."\n".$e->getMessage() |
|
129 | 129 | ); |
130 | 130 | } |
131 | 131 |