Fix CS and add more comments within ticket bundle

This commit is contained in:
2025-06-02 15:51:11 +02:00
parent f1a5b5c49e
commit fc61dfdf3a
13 changed files with 50 additions and 9 deletions

View File

@@ -31,7 +31,7 @@ final readonly class GeographicalUnitStatAggregator implements AggregatorInterfa
public function __construct(
private GeographicalUnitLayerRepositoryInterface $geographicalUnitLayerRepository,
private TranslatableStringHelperInterface $translatableStringHelper,
private RollingDateConverterInterface $rollingDateConverter
private RollingDateConverterInterface $rollingDateConverter,
) {}
public function addRole(): ?string

View File

@@ -68,6 +68,6 @@ interface PersonACLAwareRepositoryInterface
public function findByPhone(
PhoneNumber $phoneNumber,
int $start = 0,
int $limit = 20
int $limit = 20,
): array;
}