@@ -61,11 +61,11 @@ discard block |
||
61 | 61 | $this->response->html('section-title', trans('tontine.menus.tontines')); |
62 | 62 | $this->response->html('content-home', $this->view()->render('tontine.pages.tontine.home')); |
63 | 63 | |
64 | - if(($tontine = $this->tenantService->tontine())) |
|
64 | + if (($tontine = $this->tenantService->tontine())) |
|
65 | 65 | { |
66 | 66 | $this->selectTontine($tontine); |
67 | 67 | } |
68 | - if(($round = $this->tenantService->round())) |
|
68 | + if (($round = $this->tenantService->round())) |
|
69 | 69 | { |
70 | 70 | $this->selectRound($round); |
71 | 71 | } |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | 'title' => trans('common.actions.cancel'), |
117 | 117 | 'class' => 'btn btn-tertiary', |
118 | 118 | 'click' => 'close', |
119 | - ],[ |
|
119 | + ], [ |
|
120 | 120 | 'title' => trans('common.actions.save'), |
121 | 121 | 'class' => 'btn btn-primary', |
122 | 122 | 'click' => $this->rq()->create(pm()->form('tontine-form')), |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | 'title' => trans('common.actions.cancel'), |
163 | 163 | 'class' => 'btn btn-tertiary', |
164 | 164 | 'click' => 'close', |
165 | - ],[ |
|
165 | + ], [ |
|
166 | 166 | 'title' => trans('common.actions.save'), |
167 | 167 | 'class' => 'btn btn-primary', |
168 | 168 | 'click' => $this->rq()->update($tontine->id, pm()->form('tontine-form')), |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | 'title' => trans('common.actions.close'), |
38 | 38 | 'class' => 'btn btn-tertiary', |
39 | 39 | 'click' => 'close', |
40 | - ],[ |
|
40 | + ], [ |
|
41 | 41 | 'title' => trans('common.actions.save'), |
42 | 42 | 'class' => 'btn btn-primary', |
43 | 43 | 'click' => $this->rq()->saveTontine(pm()->select('tontine_id')->toInt()), |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | public function saveTontine(int $tontineId) |
51 | 51 | { |
52 | - if(!($tontine = $this->tontineService->getTontine($tontineId))) |
|
52 | + if (!($tontine = $this->tontineService->getTontine($tontineId))) |
|
53 | 53 | { |
54 | 54 | return $this->response; |
55 | 55 | } |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | $this->selectTontine($tontine); |
61 | 61 | |
62 | - if($tontine->rounds->count() === 0) |
|
62 | + if ($tontine->rounds->count() === 0) |
|
63 | 63 | { |
64 | 64 | $this->dialog->hide(); |
65 | 65 | $this->notify->info(trans('tontine.messages.selected', ['tontine' => $tontine->name])); |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | |
73 | 73 | public function showRounds() |
74 | 74 | { |
75 | - if(!($tontine = $this->tenantService->tontine())) |
|
75 | + if (!($tontine = $this->tenantService->tontine())) |
|
76 | 76 | { |
77 | 77 | return $this->response; |
78 | 78 | } |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | 'title' => trans('common.actions.close'), |
84 | 84 | 'class' => 'btn btn-tertiary', |
85 | 85 | 'click' => 'close', |
86 | - ],[ |
|
86 | + ], [ |
|
87 | 87 | 'title' => trans('common.actions.save'), |
88 | 88 | 'class' => 'btn btn-primary', |
89 | 89 | 'click' => $this->rq()->saveRound(pm()->select('round_id')->toInt()), |
@@ -95,11 +95,11 @@ discard block |
||
95 | 95 | |
96 | 96 | public function saveRound(int $roundId) |
97 | 97 | { |
98 | - if(!($tontine = $this->tenantService->tontine())) |
|
98 | + if (!($tontine = $this->tenantService->tontine())) |
|
99 | 99 | { |
100 | 100 | return $this->response; |
101 | 101 | } |
102 | - if(!($round = $this->tontineService->getRound($roundId))) |
|
102 | + if (!($round = $this->tontineService->getRound($roundId))) |
|
103 | 103 | { |
104 | 104 | return $this->response; |
105 | 105 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | 'title' => trans('common.actions.cancel'), |
80 | 80 | 'class' => 'btn btn-tertiary', |
81 | 81 | 'click' => 'close', |
82 | - ],[ |
|
82 | + ], [ |
|
83 | 83 | 'title' => trans('common.actions.save'), |
84 | 84 | 'class' => 'btn btn-primary', |
85 | 85 | 'click' => $this->rq()->create(pm()->form('member-form')), |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | 'click' => 'close', |
113 | 113 | ]]; |
114 | 114 | $useFaker = config('jaxon.app.faker', false); |
115 | - if($useFaker) |
|
115 | + if ($useFaker) |
|
116 | 116 | { |
117 | 117 | $buttons[] = [ |
118 | 118 | 'title' => '<i class="fa fa-fill"></i>', |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | { |
140 | 140 | $members = array_map(function($value) { |
141 | 141 | $values = explode(";", trim($value, " \t\n\r;")); |
142 | - if(count($values) === 0 || trim($values[0]) === '') |
|
142 | + if (count($values) === 0 || trim($values[0]) === '') |
|
143 | 143 | { |
144 | 144 | return []; |
145 | 145 | } |
@@ -149,9 +149,9 @@ discard block |
||
149 | 149 | 'phone' => '', |
150 | 150 | ]; |
151 | 151 | // The next values are either the phone number or the email, in any order. |
152 | - foreach([1, 2] as $count) |
|
152 | + foreach ([1, 2] as $count) |
|
153 | 153 | { |
154 | - if(count($values) > $count) |
|
154 | + if (count($values) > $count) |
|
155 | 155 | { |
156 | 156 | $field = strpos($values[$count], '@') !== false ? 'email' : 'phone'; |
157 | 157 | $member[$field] = trim($values[$count]); |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | 'title' => trans('common.actions.cancel'), |
194 | 194 | 'class' => 'btn btn-tertiary', |
195 | 195 | 'click' => 'close', |
196 | - ],[ |
|
196 | + ], [ |
|
197 | 197 | 'title' => trans('common.actions.save'), |
198 | 198 | 'class' => 'btn btn-primary', |
199 | 199 | 'click' => $this->rq()->update($member->id, pm()->form('member-form')), |
@@ -15,7 +15,7 @@ |
||
15 | 15 | |
16 | 16 | public function selectCurrencies(string $countryCode) |
17 | 17 | { |
18 | - $html= $this->view()->render('tontine.pages.tontine.currency', [ |
|
18 | + $html = $this->view()->render('tontine.pages.tontine.currency', [ |
|
19 | 19 | 'currencies' => $this->localeService->getCountryCurrencies($countryCode) |
20 | 20 | ]); |
21 | 21 | $this->response->html('select_currency_container', $html); |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | */ |
116 | 116 | public function createRefund(string $debtId) |
117 | 117 | { |
118 | - if($this->session->closed) |
|
118 | + if ($this->session->closed) |
|
119 | 119 | { |
120 | 120 | $this->notify->warning(trans('meeting.warnings.session.closed')); |
121 | 121 | return $this->response; |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | |
134 | 134 | public function deleteRefund(int $debtId) |
135 | 135 | { |
136 | - if($this->session->closed) |
|
136 | + if ($this->session->closed) |
|
137 | 137 | { |
138 | 138 | $this->notify->warning(trans('meeting.warnings.session.closed')); |
139 | 139 | return $this->response; |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | */ |
107 | 107 | public function addRefund() |
108 | 108 | { |
109 | - if($this->session->closed) |
|
109 | + if ($this->session->closed) |
|
110 | 110 | { |
111 | 111 | $this->notify->warning(trans('meeting.warnings.session.closed')); |
112 | 112 | return $this->response; |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | 'title' => trans('common.actions.cancel'), |
120 | 120 | 'class' => 'btn btn-tertiary', |
121 | 121 | 'click' => 'close', |
122 | - ],[ |
|
122 | + ], [ |
|
123 | 123 | 'title' => trans('common.actions.save'), |
124 | 124 | 'class' => 'btn btn-primary', |
125 | 125 | 'click' => $this->rq()->createRefund(pm()->form('refund-form')), |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | */ |
135 | 135 | public function createRefund(array $formValues) |
136 | 136 | { |
137 | - if($this->session->closed) |
|
137 | + if ($this->session->closed) |
|
138 | 138 | { |
139 | 139 | $this->notify->warning(trans('meeting.warnings.session.closed')); |
140 | 140 | return $this->response; |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | |
159 | 159 | public function deleteRefund(int $refundId) |
160 | 160 | { |
161 | - if($this->session->closed) |
|
161 | + if ($this->session->closed) |
|
162 | 162 | { |
163 | 163 | $this->notify->warning(trans('meeting.warnings.session.closed')); |
164 | 164 | return $this->response; |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | public function addDisbursement() |
97 | 97 | { |
98 | - if($this->session->closed) |
|
98 | + if ($this->session->closed) |
|
99 | 99 | { |
100 | 100 | $this->notify->warning(trans('meeting.warnings.session.closed')); |
101 | 101 | return $this->response; |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | 'title' => trans('common.actions.cancel'), |
111 | 111 | 'class' => 'btn btn-tertiary', |
112 | 112 | 'click' => 'close', |
113 | - ],[ |
|
113 | + ], [ |
|
114 | 114 | 'title' => trans('common.actions.save'), |
115 | 115 | 'class' => 'btn btn-primary', |
116 | 116 | 'click' => $this->rq()->createDisbursement(pm()->form('disbursement-form')), |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | */ |
126 | 126 | public function createDisbursement(array $formValues) |
127 | 127 | { |
128 | - if($this->session->closed) |
|
128 | + if ($this->session->closed) |
|
129 | 129 | { |
130 | 130 | $this->notify->warning(trans('meeting.warnings.session.closed')); |
131 | 131 | return $this->response; |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | |
145 | 145 | public function editDisbursement(int $disbursementId) |
146 | 146 | { |
147 | - if($this->session->closed) |
|
147 | + if ($this->session->closed) |
|
148 | 148 | { |
149 | 149 | $this->notify->warning(trans('meeting.warnings.session.closed')); |
150 | 150 | return $this->response; |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | 'title' => trans('common.actions.cancel'), |
162 | 162 | 'class' => 'btn btn-tertiary', |
163 | 163 | 'click' => 'close', |
164 | - ],[ |
|
164 | + ], [ |
|
165 | 165 | 'title' => trans('common.actions.save'), |
166 | 166 | 'class' => 'btn btn-primary', |
167 | 167 | 'click' => $this->rq()->updateDisbursement($disbursementId, pm()->form('disbursement-form')), |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | */ |
177 | 177 | public function updateDisbursement(int $disbursementId, array $formValues) |
178 | 178 | { |
179 | - if($this->session->closed) |
|
179 | + if ($this->session->closed) |
|
180 | 180 | { |
181 | 181 | $this->notify->warning(trans('meeting.warnings.session.closed')); |
182 | 182 | return $this->response; |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | |
196 | 196 | public function deleteDisbursement(int $disbursementId) |
197 | 197 | { |
198 | - if($this->session->closed) |
|
198 | + if ($this->session->closed) |
|
199 | 199 | { |
200 | 200 | $this->notify->warning(trans('meeting.warnings.session.closed')); |
201 | 201 | return $this->response; |
@@ -49,8 +49,7 @@ discard block |
||
49 | 49 | */ |
50 | 50 | protected function getPool() |
51 | 51 | { |
52 | - $poolId = $this->target()->method() === 'home' ? $this->target()->args()[0] : |
|
53 | - intval($this->bag('subscription')->get('pool.id')); |
|
52 | + $poolId = $this->target()->method() === 'home' ? $this->target()->args()[0] : intval($this->bag('subscription')->get('pool.id')); |
|
54 | 53 | $this->pool = $this->poolService->getPool($poolId); |
55 | 54 | } |
56 | 55 | |
@@ -69,7 +68,7 @@ discard block |
||
69 | 68 | ->with('pool', $this->pool); |
70 | 69 | $this->response->html('pool-subscription-sessions', $html); |
71 | 70 | $this->jq('#btn-subscription-sessions-refresh')->click($this->rq()->home($poolId)); |
72 | - if($this->pool->remit_planned) |
|
71 | + if ($this->pool->remit_planned) |
|
73 | 72 | { |
74 | 73 | $this->jq('#btn-subscription-planning') |
75 | 74 | ->click($this->cl(Subscription::class)->rq()->planning($poolId)); |
@@ -50,8 +50,7 @@ discard block |
||
50 | 50 | */ |
51 | 51 | protected function getPool() |
52 | 52 | { |
53 | - $poolId = $this->target()->method() === 'home' ? $this->target()->args()[0] : |
|
54 | - intval($this->bag('subscription')->get('pool.id')); |
|
53 | + $poolId = $this->target()->method() === 'home' ? $this->target()->args()[0] : intval($this->bag('subscription')->get('pool.id')); |
|
55 | 54 | $this->pool = $this->poolService->getPool($poolId); |
56 | 55 | } |
57 | 56 | |
@@ -71,7 +70,7 @@ discard block |
||
71 | 70 | $this->response->html('pool-subscription-members', $html); |
72 | 71 | $this->jq('#btn-subscription-members-filter')->click($this->rq()->filter()); |
73 | 72 | $this->jq('#btn-subscription-members-refresh')->click($this->rq()->home($poolId)); |
74 | - if($this->pool->remit_planned) |
|
73 | + if ($this->pool->remit_planned) |
|
75 | 74 | { |
76 | 75 | $this->jq('#btn-subscription-beneficiaries') |
77 | 76 | ->click($this->cl(Subscription::class)->rq()->beneficiaries($poolId)); |