@@ -71,17 +71,17 @@ |
||
71 | 71 | $row = SpecificService::runSpecifics($row, $specifics); |
72 | 72 | // loop each column, put in $data |
73 | 73 | foreach ($row as $columnIndex => $column) { |
74 | - if(!isset($data[$columnIndex])) { |
|
74 | + if (!isset($data[$columnIndex])) { |
|
75 | 75 | // don't need to handle this. Continue. |
76 | 76 | continue; |
77 | 77 | } |
78 | - if('' !== $column) { |
|
78 | + if ('' !== $column) { |
|
79 | 79 | $data[$columnIndex]['values'][] = trim($column); |
80 | 80 | } |
81 | 81 | } |
82 | 82 | } |
83 | 83 | // loop data, clean up data: |
84 | - foreach($data as $index => $columnInfo) { |
|
84 | + foreach ($data as $index => $columnInfo) { |
|
85 | 85 | $data[$index]['values'] = array_unique($data[$index]['values']); |
86 | 86 | asort($data[$index]['values']); |
87 | 87 | } |
@@ -44,8 +44,8 @@ |
||
44 | 44 | { |
45 | 45 | Log::debug('Now in OpposingAccounts::getMap()'); |
46 | 46 | $result = []; |
47 | - $uri = (string) config('csv_importer.uri'); |
|
48 | - $token = (string) config('csv_importer.access_token'); |
|
47 | + $uri = (string)config('csv_importer.uri'); |
|
48 | + $token = (string)config('csv_importer.access_token'); |
|
49 | 49 | // get list of asset accounts: |
50 | 50 | $request = new GetAccountsRequest($uri, $token); |
51 | 51 | $request->setType(GetAccountsRequest::ALL); |
@@ -53,7 +53,7 @@ |
||
53 | 53 | private function processAmount(array $transaction): array |
54 | 54 | { |
55 | 55 | Log::debug(sprintf('Now at the start of processAmount("%s")', $transaction['amount'])); |
56 | - if('' === (string)$transaction['amount']) { |
|
56 | + if ('' === (string)$transaction['amount']) { |
|
57 | 57 | $transaction['amount'] = '0'; |
58 | 58 | |
59 | 59 | Log::error('Amount is EMPTY. This will give problems further ahead.', $transaction); |
@@ -55,7 +55,7 @@ |
||
55 | 55 | */ |
56 | 56 | public function __construct(Repository $config) |
57 | 57 | { |
58 | - $trustedProxies = (string) config('csv_importer.trusted_proxies'); |
|
58 | + $trustedProxies = (string)config('csv_importer.trusted_proxies'); |
|
59 | 59 | $this->proxies = explode(',', $trustedProxies); |
60 | 60 | if ('**' === $trustedProxies) { |
61 | 61 | $this->proxies = '**'; |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | // TODO here we collect all the values from the CSV file. |
105 | 105 | // get columns from file |
106 | 106 | $content = StorageService::getContent(session()->get(Constants::UPLOAD_CSV_FILE)); |
107 | - $delimiter = (string) config(sprintf('csv_importer.delimiters.%s', $configuration->getDelimiter())); |
|
107 | + $delimiter = (string)config(sprintf('csv_importer.delimiters.%s', $configuration->getDelimiter())); |
|
108 | 108 | $data = MapperService::getMapData($content, $delimiter, $configuration->isHeaders(), $configuration->getSpecifics(), $data); |
109 | 109 | |
110 | 110 | return view('import.map.index', compact('mainTitle', 'subTitle', 'roles', 'data')); |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | $values = !is_array($values) ? [] : $values; |
123 | 123 | $mapping = !is_array($mapping) ? [] : $mapping; |
124 | 124 | $data = []; |
125 | - $configuration = Configuration::fromArray(session()->get(Constants::CONFIGURATION)); |
|
125 | + $configuration = Configuration::fromArray(session()->get(Constants::CONFIGURATION)); |
|
126 | 126 | |
127 | 127 | |
128 | 128 |