Passed
Pull Request — main (#54)
by Thierry
13:54
created
app/Ajax/Web/Locale.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 
16 16
     public function selectCurrencies(string $countryCode)
17 17
     {
18
-        $html= $this->render('pages.tontine.currency', [
18
+        $html = $this->render('pages.tontine.currency', [
19 19
             'currencies' => $this->localeService->getCountryCurrencies($countryCode)
20 20
         ]);
21 21
         $this->response->html('select_currency_container', $html);
Please login to merge, or discard this patch.
app/Http/Controllers/ReportController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         $session = $this->tenantService->getSession($sessionId);
40 40
         view()->share($this->reportService->getSessionReport($session));
41 41
         // Show the html page
42
-        if($request->has('html'))
42
+        if ($request->has('html'))
43 43
         {
44 44
             return view("tontine.report.$template.session");
45 45
         }
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
         $session = $this->tenantService->getSession($sessionId);
84 84
         view()->share($this->reportService->getProfitsReport($session));
85 85
         // Show the html page
86
-        if($request->has('html'))
86
+        if ($request->has('html'))
87 87
         {
88 88
             return view("tontine.report.$template.profits");
89 89
         }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         $round = $this->tenantService->getRound($roundId);
113 113
         view()->share($this->reportService->getRoundReport($round));
114 114
         // Show the html page
115
-        if($request->has('html'))
115
+        if ($request->has('html'))
116 116
         {
117 117
             return view("tontine.report.$template.round");
118 118
         }
Please login to merge, or discard this patch.