Passed
Push — master ( a34e41...faa861 )
by Will
04:01
created
src/Security/User/AlmaUserProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
                 return new AlmaUser($username, array('ROLE_USER'), $firstName, $lastName);
33 33
             }
34 34
         } catch (\GuzzleHttp\Exception\GuzzleException $e) {
35
-            $this->logger->error($e->getCode() . $e->getMessage());
35
+            $this->logger->error($e->getCode().$e->getMessage());
36 36
         }
37 37
 
38 38
         throw new UsernameNotFoundException(sprintf('Username "%s" does not exist.', $username));
Please login to merge, or discard this patch.
src/Controller/ResultController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
                 $this->api->payUserFee($transaction->getUserId(), $fee->getFeeId(), $fee->getBalance());
100 100
                 $result = true;
101 101
             } catch (\GuzzleHttp\Exception\GuzzleException $e) {
102
-                echo $e->getCode() . $e->getMessage();
102
+                echo $e->getCode().$e->getMessage();
103 103
             }
104 104
         }
105 105
 
Please login to merge, or discard this patch.
src/Controller/HistoryController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
             ['date' => 'DESC']
20 20
         );
21 21
         return $this->render('views/history.html.twig', [
22
-            'full_name' => $user->getFirstName() . ' ' . $user->getLastName(),
22
+            'full_name' => $user->getFirstName().' '.$user->getLastName(),
23 23
             'transactions' => $transactions
24 24
         ]);
25 25
     }
Please login to merge, or discard this patch.
src/Controller/ListFeesController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         }
37 37
 
38 38
         return $this->render('views/index.html.twig', [
39
-            'full_name' => $user->getFirstName() . ' ' . $user->getLastName(),
39
+            'full_name' => $user->getFirstName().' '.$user->getLastName(),
40 40
             'user_fees' => $userFees,
41 41
             'total_Due' => $totalDue,
42 42
             'transaction' => $transactionToNotify
Please login to merge, or discard this patch.