Completed
Push — master ( b97427...e235cc )
by Raffael
30:35 queued 26:08
created
src/app/Balloon.App.Api/v2/Nodes.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -958,9 +958,9 @@
 block discarded – undo
958 958
                 $node->zip($archive);
959 959
             } catch (\Exception $e) {
960 960
                 $this->logger->debug('failed zip node in multi node request ['.$node->getId().']', [
961
-                   'category' => get_class($this),
962
-                   'exception' => $e,
963
-               ]);
961
+                    'category' => get_class($this),
962
+                    'exception' => $e,
963
+                ]);
964 964
             }
965 965
         }
966 966
 
Please login to merge, or discard this patch.
src/app/Balloon.App.Wopi/Session/Session.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
             //'FileSharingUrl' => null,
104 104
             //'FileUrl' => null,
105 105
             'FileVersionPostMessage' => true,
106
-           // 'FileSharingPostMessage' => null,
106
+            // 'FileSharingPostMessage' => null,
107 107
             'PostMessageOrigin' => $this->session['client'],
108 108
             'OwnerId' => (string) $this->file->getOwner(),
109 109
             'ReadOnly' => $this->file->isReadonly(),
Please login to merge, or discard this patch.
src/app/Balloon.App.Wopi/HostManager.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -260,7 +260,7 @@
 block discarded – undo
260 260
         $response = $this->client->request(
261 261
             'GET',
262 262
             $url
263
-         );
263
+            );
264 264
 
265 265
         $body = $response->getBody()->getContents();
266 266
         $body = json_decode(json_encode(simplexml_load_string($body), JSON_THROW_ON_ERROR), true, 512, JSON_THROW_ON_ERROR | JSON_OBJECT_AS_ARRAY);
Please login to merge, or discard this patch.
src/lib/Filesystem/Node/AbstractNode.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1144,7 +1144,7 @@
 block discarded – undo
1144 1144
     protected function prepareLock(string $identifier, int $ttl = 1800): array
1145 1145
     {
1146 1146
         return [
1147
-             'owner' => $this->_user->getId(),
1147
+                'owner' => $this->_user->getId(),
1148 1148
             'created' => new UTCDateTime(),
1149 1149
             'id' => $identifier,
1150 1150
             'expire' => new UTCDateTime((time() + $ttl) * 1000),
Please login to merge, or discard this patch.