🤖 Auto commit for release 'develop' on 2026-01-23

This commit is contained in:
JC5
2026-01-23 15:14:29 +01:00
parent 8f15a32bd6
commit eeeba86d38
888 changed files with 10732 additions and 10387 deletions

View File

@@ -39,9 +39,9 @@ class UpgradesRecurrenceMetaData extends Command
public const string CONFIG_NAME = '481_migrate_recurrence_meta';
protected $description = 'Migrate recurrence meta data';
protected $description = 'Migrate recurrence meta data';
protected $signature = 'upgrade:481-recurrence-meta {--F|force : Force the execution of this command.}';
protected $signature = 'upgrade:481-recurrence-meta {--F|force : Force the execution of this command.}';
/**
* Execute the console command.
@@ -73,7 +73,7 @@ class UpgradesRecurrenceMetaData extends Command
private function migrateMetaData(): int
{
$count = 0;
$count = 0;
// get all recurrence meta data:
$collection = RecurrenceMeta::with('recurrence')->get();
@@ -88,7 +88,7 @@ class UpgradesRecurrenceMetaData extends Command
private function migrateEntry(RecurrenceMeta $meta): int
{
/** @var null|Recurrence $recurrence */
$recurrence = $meta->recurrence;
$recurrence = $meta->recurrence;
if (null === $recurrence) {
return 0;
}
@@ -96,7 +96,7 @@ class UpgradesRecurrenceMetaData extends Command
if (null === $firstTransaction) {
return 0;
}
$value = $meta->value;
$value = $meta->value;
if ('tags' === $meta->name) {
$array = explode(',', $meta->value);