@@ -73,7 +73,7 @@ |
||
| 73 | 73 | // always add owner to the list of users with access to the file |
| 74 | 74 | $userIds = [$owner]; |
| 75 | 75 | |
| 76 | - if (!$this->util->isFile($owner . '/' . $ownerPath)) { |
|
| 76 | + if (!$this->util->isFile($owner.'/'.$ownerPath)) { |
|
| 77 | 77 | return ['users' => $userIds, 'public' => false]; |
| 78 | 78 | } |
| 79 | 79 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') { |
| 87 | 87 | $path = Filesystem::getPath($params['fileSource']); |
| 88 | 88 | list($owner, $ownerPath) = $this->getOwnerPath($path); |
| 89 | - $absPath = '/' . $owner . '/files/' . $ownerPath; |
|
| 89 | + $absPath = '/'.$owner.'/files/'.$ownerPath; |
|
| 90 | 90 | $this->update($absPath); |
| 91 | 91 | } |
| 92 | 92 | } |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') { |
| 103 | 103 | $path = Filesystem::getPath($params['fileSource']); |
| 104 | 104 | list($owner, $ownerPath) = $this->getOwnerPath($path); |
| 105 | - $absPath = '/' . $owner . '/files/' . $ownerPath; |
|
| 105 | + $absPath = '/'.$owner.'/files/'.$ownerPath; |
|
| 106 | 106 | $this->update($absPath); |
| 107 | 107 | } |
| 108 | 108 | } |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | */ |
| 117 | 117 | public function postRestore($params) { |
| 118 | 118 | if ($this->encryptionManager->isEnabled()) { |
| 119 | - $path = Filesystem::normalizePath('/' . $this->uid . '/files/' . $params['filePath']); |
|
| 119 | + $path = Filesystem::normalizePath('/'.$this->uid.'/files/'.$params['filePath']); |
|
| 120 | 120 | $this->update($path); |
| 121 | 121 | } |
| 122 | 122 | } |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | dirname($source) !== dirname($target) |
| 136 | 136 | ) { |
| 137 | 137 | list($owner, $ownerPath) = $this->getOwnerPath($target); |
| 138 | - $absPath = '/' . $owner . '/files/' . $ownerPath; |
|
| 138 | + $absPath = '/'.$owner.'/files/'.$ownerPath; |
|
| 139 | 139 | $this->update($absPath); |
| 140 | 140 | } |
| 141 | 141 | } |
@@ -150,10 +150,10 @@ discard block |
||
| 150 | 150 | protected function getOwnerPath($path) { |
| 151 | 151 | $info = Filesystem::getFileInfo($path); |
| 152 | 152 | $owner = Filesystem::getOwner($path); |
| 153 | - $view = new View('/' . $owner . '/files'); |
|
| 153 | + $view = new View('/'.$owner.'/files'); |
|
| 154 | 154 | $path = $view->getPath($info->getId()); |
| 155 | 155 | if ($path === null) { |
| 156 | - throw new \InvalidArgumentException('No file found for ' . $info->getId()); |
|
| 156 | + throw new \InvalidArgumentException('No file found for '.$info->getId()); |
|
| 157 | 157 | } |
| 158 | 158 | |
| 159 | 159 | return [$owner, $path]; |
@@ -66,12 +66,12 @@ discard block |
||
| 66 | 66 | */ |
| 67 | 67 | private function buildFileNameWithSuffix($absolutePath, $postFix = '') { |
| 68 | 68 | if ($postFix !== '') { |
| 69 | - $postFix = '.' . ltrim($postFix, '.'); |
|
| 69 | + $postFix = '.'.ltrim($postFix, '.'); |
|
| 70 | 70 | $postFix = str_replace(['\\', '/'], '', $postFix); |
| 71 | 71 | $absolutePath .= '-'; |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - return $absolutePath . $postFix; |
|
| 74 | + return $absolutePath.$postFix; |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | /** |
@@ -127,11 +127,11 @@ discard block |
||
| 127 | 127 | $this->current[] = $uniqueFileName; |
| 128 | 128 | |
| 129 | 129 | // Build a name without postfix |
| 130 | - $path = $this->buildFileNameWithSuffix($uniqueFileName . '-folder', $postFix); |
|
| 130 | + $path = $this->buildFileNameWithSuffix($uniqueFileName.'-folder', $postFix); |
|
| 131 | 131 | mkdir($path, 0700); |
| 132 | 132 | $this->current[] = $path; |
| 133 | 133 | |
| 134 | - return $path . '/'; |
|
| 134 | + return $path.'/'; |
|
| 135 | 135 | } else { |
| 136 | 136 | $this->log->warning( |
| 137 | 137 | 'Can not create a temporary folder in directory {dir}. Check it exists and has correct permissions', |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | if ($dh) { |
| 191 | 191 | while (($file = readdir($dh)) !== false) { |
| 192 | 192 | if (substr($file, 0, 7) === self::TMP_PREFIX) { |
| 193 | - $path = $this->tmpBaseDir . '/' . $file; |
|
| 193 | + $path = $this->tmpBaseDir.'/'.$file; |
|
| 194 | 194 | $mtime = filemtime($path); |
| 195 | 195 | if ($mtime < $cutOfTime) { |
| 196 | 196 | $files[] = $path; |
@@ -147,7 +147,7 @@ |
||
| 147 | 147 | if (isset($this->entityTypeCollections[$name])) { |
| 148 | 148 | return $this->entityTypeCollections[$name]; |
| 149 | 149 | } |
| 150 | - throw new NotFound('Entity type "' . $name . '" not found."'); |
|
| 150 | + throw new NotFound('Entity type "'.$name.'" not found."'); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | /** |
@@ -77,7 +77,7 @@ |
||
| 77 | 77 | $path = array_pop($path); |
| 78 | 78 | |
| 79 | 79 | $newName = \OC_Helper::buildNotExistingFileNameForView('/', $path, $this->view); |
| 80 | - $url = $request->getBaseUrl() . $newName; |
|
| 80 | + $url = $request->getBaseUrl().$newName; |
|
| 81 | 81 | $request->setUrl($url); |
| 82 | 82 | } |
| 83 | 83 | } |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | $output->writeln('Syncing users ...'); |
| 55 | 55 | $progress = new ProgressBar($output); |
| 56 | 56 | $progress->start(); |
| 57 | - $this->syncService->syncInstance(function () use ($progress) { |
|
| 57 | + $this->syncService->syncInstance(function() use ($progress) { |
|
| 58 | 58 | $progress->advance(); |
| 59 | 59 | }); |
| 60 | 60 | |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | public function getChild($name) { |
| 59 | 59 | $elements = pathinfo($name); |
| 60 | 60 | $ext = isset($elements['extension']) ? $elements['extension'] : ''; |
| 61 | - $size = (int)(isset($elements['filename']) ? $elements['filename'] : '64'); |
|
| 61 | + $size = (int) (isset($elements['filename']) ? $elements['filename'] : '64'); |
|
| 62 | 62 | if (!in_array($ext, ['jpeg', 'png'], true)) { |
| 63 | 63 | throw new MethodNotAllowed('File format not allowed'); |
| 64 | 64 | } |
@@ -89,7 +89,7 @@ |
||
| 89 | 89 | public function getLastModified() { |
| 90 | 90 | $timestamp = $this->avatar->getFile($this->size)->getMTime(); |
| 91 | 91 | if (!empty($timestamp)) { |
| 92 | - return (int)$timestamp; |
|
| 92 | + return (int) $timestamp; |
|
| 93 | 93 | } |
| 94 | 94 | return $timestamp; |
| 95 | 95 | } |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | return true; |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - $size = isset($queryParams['size']) ? (int)$queryParams['size'] : -1; |
|
| 74 | + $size = isset($queryParams['size']) ? (int) $queryParams['size'] : -1; |
|
| 75 | 75 | |
| 76 | 76 | $path = $request->getPath(); |
| 77 | 77 | $node = $this->server->tree->getNodeForPath($path); |