Completed
Push — master ( 3cb4c8...0f7cfa )
by Raffael
09:35 queued 06:16
created
src/app/Balloon.App.Api/v1/Collection.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * balloon
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
                 'type' => $rule['role'] instanceof User ? 'user' : 'group',
182 182
                 'priv' => $rule['privilege'],
183 183
                 'name' => $role['name'],
184
-                'id' => (string) $rule['id'],
184
+                'id' => (string)$rule['id'],
185 185
             ];
186 186
         }
187 187
 
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
 
351 351
             return (new Response())->setCode(201)->setBody([
352 352
                 'code' => 201,
353
-                'data' => (string) $result,
353
+                'data' => (string)$result,
354 354
             ]);
355 355
         }
356 356
         if (null !== $id && null === $name) {
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
 
367 367
         return (new Response())->setCode(201)->setBody([
368 368
             'code' => 201,
369
-            'data' => (string) $result,
369
+            'data' => (string)$result,
370 370
         ]);
371 371
     }
372 372
 }
Please login to merge, or discard this patch.
src/app/Balloon.App.DesktopClient/Exception/GithubAssetNoMatch.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * balloon
Please login to merge, or discard this patch.
src/app/Balloon.App.DesktopClient/Exception/GithubRequestFailed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * balloon
Please login to merge, or discard this patch.
src/app/Balloon.App.DesktopClient/Exception/FormatNotFound.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * balloon
Please login to merge, or discard this patch.
src/app/Balloon.App.DesktopClient/Exception/GithubAssetNotFound.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * balloon
Please login to merge, or discard this patch.
src/app/Balloon.App.Sharelink/Exception/TokenInvalid.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * balloon
Please login to merge, or discard this patch.
src/app/Balloon.App.Sharelink/Exception/LinkExpired.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * balloon
Please login to merge, or discard this patch.
src/app/Balloon.App.Sharelink/Sharelink.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * balloon
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             if (empty($set['expiration'])) {
69 69
                 unset($set['expiration']);
70 70
             } else {
71
-                $set['expiration'] = (int) $set['expiration'];
71
+                $set['expiration'] = (int)$set['expiration'];
72 72
             }
73 73
         }
74 74
 
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         }
161 161
 
162 162
         if (isset($attributes['expiration']) && !empty($attributes['expiration'])) {
163
-            $time = (int) $attributes['expiration'];
163
+            $time = (int)$attributes['expiration'];
164 164
             if ($time < time()) {
165 165
                 throw new Exception\LinkExpired('link is expired');
166 166
             }
Please login to merge, or discard this patch.
src/app/Balloon.App.Convert/Migration/Delta/Installation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * balloon
Please login to merge, or discard this patch.