@@ -44,10 +44,10 @@ discard block |
||
44 | 44 | } |
45 | 45 | |
46 | 46 | public function listTrashRoot(IUser $user): array { |
47 | - $items = array_reduce($this->getBackends(), function (array $items, ITrashBackend $backend) use ($user) { |
|
47 | + $items = array_reduce($this->getBackends(), function(array $items, ITrashBackend $backend) use ($user) { |
|
48 | 48 | return array_merge($items, $backend->listTrashRoot($user)); |
49 | 49 | }, []); |
50 | - usort($items, function (ITrashItem $a, ITrashItem $b) { |
|
50 | + usort($items, function(ITrashItem $a, ITrashItem $b) { |
|
51 | 51 | return $a->getDeletedTime() - $b->getDeletedTime(); |
52 | 52 | }); |
53 | 53 | return $items; |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | */ |
77 | 77 | public function getBackendForStorage(IStorage $storage): ITrashBackend { |
78 | 78 | $fullType = get_class($storage); |
79 | - $foundType = array_reduce(array_keys($this->backends), function ($type, $registeredType) use ($storage) { |
|
79 | + $foundType = array_reduce(array_keys($this->backends), function($type, $registeredType) use ($storage) { |
|
80 | 80 | if ( |
81 | 81 | $storage->instanceOfStorage($registeredType) && |
82 | 82 | ($type === '' || is_subclass_of($registeredType, $type)) |
@@ -26,6 +26,6 @@ |
||
26 | 26 | |
27 | 27 | class TrashFolder extends AbstractTrashFolder { |
28 | 28 | public function getName(): string { |
29 | - return $this->data->getName() . '.d' . $this->getLastModified(); |
|
29 | + return $this->data->getName().'.d'.$this->getLastModified(); |
|
30 | 30 | } |
31 | 31 | } |
@@ -67,7 +67,7 @@ |
||
67 | 67 | public function getChildren(): array { |
68 | 68 | $entries = $this->trashManager->listTrashRoot($this->user); |
69 | 69 | |
70 | - $children = array_map(function (ITrashItem $entry) { |
|
70 | + $children = array_map(function(ITrashItem $entry) { |
|
71 | 71 | if ($entry->getType() === FileInfo::TYPE_FOLDER) { |
72 | 72 | return new TrashFolder($this->trashManager, $entry); |
73 | 73 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | public function getChildren(): array { |
33 | 33 | $entries = $this->trashManager->listTrashFolder($this->data); |
34 | 34 | |
35 | - $children = array_map(function (ITrashItem $entry) { |
|
35 | + $children = array_map(function(ITrashItem $entry) { |
|
36 | 36 | if ($entry->getType() === FileInfo::TYPE_FOLDER) { |
37 | 37 | return new TrashFolderFolder($this->trashManager, $entry); |
38 | 38 | } |
@@ -26,10 +26,10 @@ |
||
26 | 26 | |
27 | 27 | class TrashFile extends AbstractTrashFile { |
28 | 28 | public function get() { |
29 | - return $this->data->getStorage()->fopen($this->data->getInternalPath() . '.d' . $this->getLastModified(), 'rb'); |
|
29 | + return $this->data->getStorage()->fopen($this->data->getInternalPath().'.d'.$this->getLastModified(), 'rb'); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | public function getName(): string { |
33 | - return $this->data->getName() . '.d' . $this->getLastModified(); |
|
33 | + return $this->data->getName().'.d'.$this->getLastModified(); |
|
34 | 34 | } |
35 | 35 | } |
@@ -71,7 +71,7 @@ |
||
71 | 71 | public function getChild($name) { |
72 | 72 | $userFolder = $this->rootFolder->getUserFolder($this->user->getUID()); |
73 | 73 | |
74 | - $fileId = (int)$name; |
|
74 | + $fileId = (int) $name; |
|
75 | 75 | $nodes = $userFolder->getById($fileId); |
76 | 76 | |
77 | 77 | if ($nodes === []) { |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | } |
61 | 61 | |
62 | 62 | public function getETag(): string { |
63 | - return (string)$this->version->getRevisionId(); |
|
63 | + return (string) $this->version->getRevisionId(); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | public function getSize(): int { |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | } |
73 | 73 | |
74 | 74 | public function getName(): string { |
75 | - return (string)$this->version->getRevisionId(); |
|
75 | + return (string) $this->version->getRevisionId(); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | public function setName($name) { |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | public function getChildren(): array { |
79 | 79 | $versions = $this->versionManager->getVersionsForFile($this->user, $this->file); |
80 | 80 | |
81 | - return array_map(function (IVersion $version) { |
|
81 | + return array_map(function(IVersion $version) { |
|
82 | 82 | return new VersionFile($version, $this->versionManager); |
83 | 83 | }, $versions); |
84 | 84 | } |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | } |
98 | 98 | |
99 | 99 | public function getName(): string { |
100 | - return (string)$this->file->getId(); |
|
100 | + return (string) $this->file->getId(); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | public function setName($name) { |
@@ -213,18 +213,18 @@ |
||
213 | 213 | continue; |
214 | 214 | } |
215 | 215 | |
216 | - $pattern = '/(^|\s)(' . '@' . $mention['id'] . ')(\b)/'; |
|
216 | + $pattern = '/(^|\s)('.'@'.$mention['id'].')(\b)/'; |
|
217 | 217 | if (strpos($mention['id'], ' ') !== false) { |
218 | - $pattern = '/(^|\s)(' . '@"' . $mention['id'] . '"' . ')(\b)?/'; |
|
218 | + $pattern = '/(^|\s)('.'@"'.$mention['id'].'"'.')(\b)?/'; |
|
219 | 219 | } |
220 | 220 | |
221 | 221 | $message = preg_replace( |
222 | 222 | $pattern, |
223 | 223 | //'${1}' . $this->regexSafeUser($mention['id'], $displayName) . '${3}', |
224 | - '${1}' . '{mention' . $mentionCount . '}' . '${3}', |
|
224 | + '${1}'.'{mention'.$mentionCount.'}'.'${3}', |
|
225 | 225 | $message |
226 | 226 | ); |
227 | - $mentions['mention' . $mentionCount] = $this->generateUserParameter($mention['id']); |
|
227 | + $mentions['mention'.$mentionCount] = $this->generateUserParameter($mention['id']); |
|
228 | 228 | $mentionCount++; |
229 | 229 | } |
230 | 230 |