@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | */ |
| 90 | 90 | public function show(Payment $payment) |
| 91 | 91 | { |
| 92 | - if (! $payment->can_edit) { |
|
| 92 | + if (!$payment->can_edit) { |
|
| 93 | 93 | // Only Super admin can access himself |
| 94 | 94 | abort(403); |
| 95 | 95 | } |
@@ -201,6 +201,6 @@ discard block |
||
| 201 | 201 | public function activeToggle(Payment $payment) |
| 202 | 202 | { |
| 203 | 203 | $this->authorize('edit payments'); |
| 204 | - $payment->update(['active' => ! $payment->active]); |
|
| 204 | + $payment->update(['active' => !$payment->active]); |
|
| 205 | 205 | } |
| 206 | 206 | } |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function build() |
| 14 | 14 | { |
| 15 | - return $this->view('emails.recurringPayments.intendToCharge',[ |
|
| 15 | + return $this->view('emails.recurringPayments.intendToCharge', [ |
|
| 16 | 16 | 'message' => 'We are going to change your card', |
| 17 | 17 | ]); |
| 18 | 18 | } |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function build() |
| 14 | 14 | { |
| 15 | - return $this->view('emails.recurringPayments.recurringPaymentFailed',[ |
|
| 15 | + return $this->view('emails.recurringPayments.recurringPaymentFailed', [ |
|
| 16 | 16 | 'message' => 'We are going to change your card', |
| 17 | 17 | ]); |
| 18 | 18 | } |