mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
Added debug code for a possible import issue.
This commit is contained in:
@@ -45,9 +45,11 @@ class RabobankDescription implements SpecificInterface
|
||||
*/
|
||||
public function run(array $row): array
|
||||
{
|
||||
$oppositeAccount = trim($row[5]);
|
||||
$oppositeName = trim($row[6]);
|
||||
$alternateName = trim($row[10]);
|
||||
Log::debug(sprintf('Now in RabobankSpecific::run(). Row has %d columns', count($row)));
|
||||
$oppositeAccount = isset($row[5]) ? trim($row[5]) : '';
|
||||
$oppositeName = isset($row[6]) ? trim($row[6]) : '';
|
||||
$alternateName = isset($row[10]) ? trim($row[10]) : '';
|
||||
|
||||
if (strlen($oppositeAccount) < 1 && strlen($oppositeName) < 1) {
|
||||
Log::debug(
|
||||
sprintf(
|
||||
|
||||
Reference in New Issue
Block a user