Skip to content

some grammatical fixes #84

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions config/laravel-backup.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

/*
* The names of the connections to the databases that should be part of the backup.
* Currently only MySQL-databases are supported.
* Currently only MySQL databases are supported.
*/
'databases' => [
'mysql'
Expand All @@ -44,7 +44,7 @@
'destination' => [

/*
* The filesystems you on which the backups will be stored. Choose one or more
* The filesystems on which the backups will be stored. Choose one or more
* of the filesystems you configured in app/config/filesystems.php
*/
'filesystems' => [
Expand All @@ -56,7 +56,7 @@
'cleanup' => [
/*
* The strategy that will be used to cleanup old backups.
* The youngest backup wil never be deleted.
* The youngest backup will never be deleted.
*/
'strategy' => \Spatie\Backup\Tasks\Cleanup\Strategies\DefaultStrategy::class,

Expand All @@ -73,17 +73,17 @@
'keepDailyBackupsForDays' => 16,

/*
* The amount of weeks of which one weekly backup must be kept.
* The amount of weeks that one weekly backup must be kept.
*/
'keepWeeklyBackupsForWeeks' => 8,

/*
* The amount of months of which one monthly backup must be kept.
* The amount of months that one monthly backup must be kept.
*/
'keepMonthlyBackupsForMonths' => 4,

/*
* The amount of years of which one yearly backup must be kept
* The amount of years that one yearly backup must be kept.
*/
'keepYearlyBackupsForYears' => 2,

Expand All @@ -98,8 +98,8 @@

/*
* In this array you can specify which backups should be monitored.
* If a backup does not meet the specified requirements the
* UnHealthyBackupWasFound-event will be fired.
* If a backup does not meet the specified requirements, the
* UnHealthyBackupWasFound event will be fired.
*/
'monitorBackups' => [
[
Expand Down