Browse Source

Auto commit for release 'develop' on 2025-04-07

pull/791/head develop-20250407
github-actions 8 months ago
parent
commit
82ca00abc5
  1. 3
      app/Console/AutoImports.php
  2. 2
      app/Enums/ExitCode.php
  3. 1
      app/Services/Shared/Configuration/Configuration.php
  4. 4
      composer.lock
  5. 2
      config/importer.php

3
app/Console/AutoImports.php

@ -245,7 +245,7 @@ trait AutoImports
}
// could also be that the end user license agreement is expired.
if($this->isExpiredAgreement()) {
if ($this->isExpiredAgreement()) {
app('log')->debug(sprintf('Exit code changed to %s.', ExitCode::AGREEMENT_EXPIRED->name));
$exitCode = ExitCode::AGREEMENT_EXPIRED->value;
}
@ -667,6 +667,7 @@ trait AutoImports
return false;
}
protected function isExpiredAgreement(): bool
{
/** @var array $errors */

2
app/Enums/ExitCode.php

@ -39,6 +39,6 @@ enum ExitCode: int
case CANNOT_READ_IMPORTABLE_FILE = 71;
case TOO_MANY_ERRORS_PROCESSING = 72;
case NOTHING_WAS_IMPORTED = 73;
case AGREEMENT_EXPIRED = 74;
case AGREEMENT_EXPIRED = 74;
}

1
app/Services/Shared/Configuration/Configuration.php

@ -741,6 +741,7 @@ class Configuration
public function isIgnoreDuplicateTransactions(): bool
{
Log::debug(sprintf('isIgnoreDuplicateTransactions(%s)', var_export($this->ignoreDuplicateTransactions, true)));
return $this->ignoreDuplicateTransactions;
}

4
composer.lock

@ -10138,6 +10138,6 @@
"ext-bcmath": "*",
"ext-json": "*"
},
"platform-dev": [],
"plugin-api-version": "2.3.0"
"platform-dev": {},
"plugin-api-version": "2.6.0"
}

2
config/importer.php

@ -24,7 +24,7 @@
declare(strict_types=1);
return [
'version' => 'develop/2025-04-05',
'version' => 'develop/2025-04-07',
'flows' => ['nordigen', 'spectre', 'file', 'simplefin'],
'enabled_flows' => [
'nordigen' => true,

Loading…
Cancel
Save