Passed
Push — master ( 05f644...4f98bc )
by guillaume
01:53 queued 16s
created
app/Src/UseCases/Domain/Users/Dto/GetUserRole.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 {
8 8
     public function get()
9 9
     {
10
-         return collect([
10
+            return collect([
11 11
             new WikiUserRole('advisor'),
12 12
             new WikiUserRole('farmer'),
13 13
             new WikiUserRole('student'),
Please login to merge, or discard this patch.
app/Http/Controllers/Api/InteractionController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@
 block discarded – undo
25 25
      * @bodyParam interactions string[] required The user's interactions on the page. Example: unapplause, done
26 26
      */
27 27
     public function handle($pageId, Request $request,
28
-                           HandleInteractions $handleInteractions,
29
-                           InteractionsQueryByPageAndUser $interactionsQueryByPageAndUser,
30
-                           CountInteractionsOnPageQuery $countInteractionsOnPage
28
+                            HandleInteractions $handleInteractions,
29
+                            InteractionsQueryByPageAndUser $interactionsQueryByPageAndUser,
30
+                            CountInteractionsOnPageQuery $countInteractionsOnPage
31 31
     )
32 32
     {
33 33
         $interactions = $request->input('interactions');
Please login to merge, or discard this patch.