@@ -32,7 +32,7 @@ |
||
| 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)); |
@@ -99,7 +99,7 @@ |
||
| 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 | |
@@ -19,7 +19,7 @@ |
||
| 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 | } |
@@ -36,7 +36,7 @@ |
||
| 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 |