@@ -40,7 +40,7 @@ |
||
40 | 40 | */ |
41 | 41 | protected function redirectTo($request) |
42 | 42 | { |
43 | - if (! $request->expectsJson()) { |
|
43 | + if (!$request->expectsJson()) { |
|
44 | 44 | return route('login'); |
45 | 45 | } |
46 | 46 | } |
@@ -60,7 +60,7 @@ |
||
60 | 60 | */ |
61 | 61 | protected function commands() |
62 | 62 | { |
63 | - $this->load(__DIR__.'/Commands'); |
|
63 | + $this->load(__DIR__ . '/Commands'); |
|
64 | 64 | |
65 | 65 | require base_path('routes/console.php'); |
66 | 66 | } |
@@ -80,11 +80,11 @@ discard block |
||
80 | 80 | case 'VZ': // Verzamelbetaling |
81 | 81 | case 'IC': // Incasso |
82 | 82 | case 'DV': // Divers |
83 | - $this->removeIBANIngDescription(); // Remove "IBAN:", because it is already at "Tegenrekening" |
|
84 | - $this->removeNameIngDescription(); // Remove "Naam:", because it is already at "Naam/ Omschrijving" |
|
85 | - $this->removeIngDescription(); // Remove "Omschrijving", but not the value from description |
|
83 | + $this->removeIBANIngDescription(); // Remove "IBAN:", because it is already at "Tegenrekening" |
|
84 | + $this->removeNameIngDescription(); // Remove "Naam:", because it is already at "Naam/ Omschrijving" |
|
85 | + $this->removeIngDescription(); // Remove "Omschrijving", but not the value from description |
|
86 | 86 | $this->moveValutadatumDescription(); // Move "Valutadatum" from description to new column |
87 | - $this->MoveSavingsAccount(); // Move savings account number and name |
|
87 | + $this->MoveSavingsAccount(); // Move savings account number and name |
|
88 | 88 | break; |
89 | 89 | case 'BA': // Betaalautomaat |
90 | 90 | $this->moveValutadatumDescription(); // Move "Valutadatum" from description to new column |
@@ -152,19 +152,19 @@ discard block |
||
152 | 152 | |
153 | 153 | if (preg_match('/(Naar|Van) (.*rekening) ([A-Za-z0-9]+)/', $this->row[8], $matches)) { // Search for saving acount at 'Mededelingen' column |
154 | 154 | $this->row[1] .= ' ' . $matches[2] . ' ' . $matches[3]; // Current name + Saving acount name + Acount number |
155 | - if ('' === (string) $this->row[3]) { // if Saving account number does not yet exists |
|
155 | + if ('' === (string)$this->row[3]) { // if Saving account number does not yet exists |
|
156 | 156 | $this->row[3] = $matches[3]; // Copy savings account number |
157 | 157 | } |
158 | 158 | $this->row[8] = preg_replace('/(Naar|Van) (.*rekening) ([A-Za-z0-9]+)/', '', $this->row[8]); // Remove the savings account content from description |
159 | 159 | } elseif (preg_match('/(Naar|Van) (.*rekening) ([A-Za-z0-9]+)/', $this->row[1], $matches)) { // Search for saving acount at 'Naam / Omschrijving' column |
160 | - $this->row[1] = $matches[2] . ' ' . $matches[3]; // Saving acount name + Acount number |
|
161 | - if ('' === (string) $this->row[3]) { // if Saving account number does not yet exists |
|
160 | + $this->row[1] = $matches[2] . ' ' . $matches[3]; // Saving acount name + Acount number |
|
161 | + if ('' === (string)$this->row[3]) { // if Saving account number does not yet exists |
|
162 | 162 | $this->row[3] = $matches[3]; // Copy savings account number |
163 | 163 | } |
164 | 164 | } |
165 | 165 | |
166 | 166 | // if Saving account number exists |
167 | - if (('' !== (string) $this->row[3]) && !preg_match('/[A-Za-z]/', $this->row[3])) { // if Saving account number has no characters |
|
167 | + if (('' !== (string)$this->row[3]) && !preg_match('/[A-Za-z]/', $this->row[3])) { // if Saving account number has no characters |
|
168 | 168 | $this->row[3] = sprintf('%010d', $this->row[3]); // Make the number 10 digits |
169 | 169 | } |
170 | 170 | } |