add missing form child in getFormDefaultData() + sort methods

try to resolve 2 last unit tests errors on ci (no errors in local)
This commit is contained in:
2023-09-29 09:35:52 +02:00
parent eddcfc3921
commit 84ba626fb5
17 changed files with 65 additions and 28 deletions

View File

@@ -80,6 +80,7 @@ class ActivityUsersJobAggregator implements AggregatorInterface
]);
}
public function getFormDefaultData(): array
{
return ['job_at' => new RollingDate(RollingDate::T_TODAY)];

View File

@@ -79,6 +79,7 @@ class ActivityUsersScopeAggregator implements AggregatorInterface
'required' => true,
]);
}
public function getFormDefaultData(): array
{
return ['scope_at' => new RollingDate(RollingDate::T_TODAY)];

View File

@@ -79,6 +79,7 @@ class CreatorScopeAggregator implements AggregatorInterface
'required' => true,
]);
}
public function getFormDefaultData(): array
{
return ['scope_at' => new RollingDate(RollingDate::T_TODAY)];