@@ -42,7 +42,7 @@ |
||
| 42 | 42 | $json = file_get_contents($file); |
| 43 | 43 | try { |
| 44 | 44 | $configuration = json_decode($json, true, 512, JSON_THROW_ON_ERROR); |
| 45 | - } catch (Exception|JsonException $e) { |
|
| 45 | + } catch (Exception | JsonException $e) { |
|
| 46 | 46 | $message = sprintf('The importer can\'t import: could not decode the JSON in the config file: %s', $e->getMessage()); |
| 47 | 47 | Log::error($message); |
| 48 | 48 | |
@@ -108,7 +108,7 @@ |
||
| 108 | 108 | Log::debug(sprintf('Date converter is going to work on "%s" using format "%s"', $string, $this->dateFormat)); |
| 109 | 109 | try { |
| 110 | 110 | $carbon = Carbon::createFromFormat($this->dateFormat, $string); |
| 111 | - } catch (InvalidArgumentException|Exception $e) { |
|
| 111 | + } catch (InvalidArgumentException | Exception $e) { |
|
| 112 | 112 | Log::error(sprintf('%s converting the date: %s', get_class($e), $e->getMessage())); |
| 113 | 113 | return Carbon::today()->format('Y-m-d'); |
| 114 | 114 | } |
@@ -142,7 +142,7 @@ |
||
| 142 | 142 | private function getOriginalValue(string $key, array $transaction): string |
| 143 | 143 | { |
| 144 | 144 | $parts = explode('.', $key); |
| 145 | - if(1 === count($parts)) { |
|
| 145 | + if (1 === count($parts)) { |
|
| 146 | 146 | return $transaction[$key] ?? '(not found)'; |
| 147 | 147 | } |
| 148 | 148 | if (3 !== count($parts)) { |
@@ -131,7 +131,7 @@ |
||
| 131 | 131 | throw new ImportException('Could not load the users currency preference.'); |
| 132 | 132 | } |
| 133 | 133 | $code = $response->getPreference()->data ?? 'EUR'; |
| 134 | - $currencyRequest = new GetCurrencyRequest($uri,$token); |
|
| 134 | + $currencyRequest = new GetCurrencyRequest($uri, $token); |
|
| 135 | 135 | $currencyRequest->setCode($code); |
| 136 | 136 | try { |
| 137 | 137 | /** @var GetCurrencyResponse $result */ |
@@ -35,8 +35,8 @@ |
||
| 35 | 35 | */ |
| 36 | 36 | private function haveAccess(): bool |
| 37 | 37 | { |
| 38 | - $uri = (string)config('csv_importer.uri'); |
|
| 39 | - $token = (string)config('csv_importer.access_token'); |
|
| 38 | + $uri = (string)config('csv_importer.uri'); |
|
| 39 | + $token = (string)config('csv_importer.access_token'); |
|
| 40 | 40 | $request = new SystemInformationRequest($uri, $token); |
| 41 | 41 | try { |
| 42 | 42 | $request->get(); |
@@ -40,8 +40,8 @@ |
||
| 40 | 40 | public function doValidate(): JsonResponse |
| 41 | 41 | { |
| 42 | 42 | $response = ['result' => 'OK', 'message' => null]; |
| 43 | - $uri = (string)config('csv_importer.uri'); |
|
| 44 | - $token = (string)config('csv_importer.access_token'); |
|
| 43 | + $uri = (string)config('csv_importer.uri'); |
|
| 44 | + $token = (string)config('csv_importer.access_token'); |
|
| 45 | 45 | $request = new SystemInformationRequest($uri, $token); |
| 46 | 46 | try { |
| 47 | 47 | $result = $request->get(); |
@@ -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 | } |