Skip to content

Commit

Permalink
allow null value for config option `delete_oldest_backups_when_using_…
Browse files Browse the repository at this point in the history
…more_megabytes_than`
  • Loading branch information
Nielsvanpach committed Jul 3, 2024
1 parent d7c4518 commit ef8b0fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Config/StrategyConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ protected function __construct(
public int $keepWeeklyBackupsForWeeks,
public int $keepMonthlyBackupsForMonths,
public int $keepYearlyBackupsForYears,
public int $deleteOldestBackupsWhenUsingMoreMegabytesThan,
public ?int $deleteOldestBackupsWhenUsingMoreMegabytesThan,
) {}

/** @param array<mixed> $data */
Expand Down

0 comments on commit ef8b0fa

Please sign in to comment.