Passed
Branch master (44e4ed)
by Ger
06:22
created
app/Http/Controllers/Responses/CreateResponseController.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
 namespace App\Http\Controllers\Responses;
6 6
 
Please login to merge, or discard this patch.
app/Http/Controllers/Responses/UpdateResponseController.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
 namespace App\Http\Controllers\Responses;
6 6
 
Please login to merge, or discard this patch.
app/Http/Controllers/Posts/CreatePostController.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
 namespace App\Http\Controllers\Posts;
6 6
 
Please login to merge, or discard this patch.
app/Http/Controllers/Posts/UpdatePostController.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
 namespace App\Http\Controllers\Posts;
6 6
 
Please login to merge, or discard this patch.
app/Http/Controllers/Posts/GetPostController.php 1 patch
Spacing   +2 added lines, -2 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
 namespace App\Http\Controllers\Posts;
6 6
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
                 $this->bus->dispatch(new FindPostQuery($postId))
22 22
             );
23 23
         } catch (PostNotExist $e) {
24
-            return JsonResponse::create(['message' => $e->getMessage()], 404);
24
+            return JsonResponse::create([ 'message' => $e->getMessage() ], 404);
25 25
         }
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
app/Http/Controllers/SubForums/FindAllSubForumsController.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
 namespace App\Http\Controllers\SubForums;
6 6
 
Please login to merge, or discard this patch.
app/Http/Controllers/SubForums/GetSubForumController.php 1 patch
Spacing   +2 added lines, -2 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
 namespace App\Http\Controllers\SubForums;
6 6
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
                 $this->bus->dispatch(new FindSubForumQuery($subForumId))
22 22
             );
23 23
         } catch (SubForumNotExist $e) {
24
-            return JsonResponse::create(['message' => $e->getMessage()], 404);
24
+            return JsonResponse::create([ 'message' => $e->getMessage() ], 404);
25 25
         }
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
app/Models/Post.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
 namespace App\Models;
6 6
 
Please login to merge, or discard this patch.
app/Models/Response.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
 namespace App\Models;
6 6
 
Please login to merge, or discard this patch.