We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfa3842 commit a063dd5Copy full SHA for a063dd5
README.md
@@ -132,7 +132,9 @@ It's possible to schedule backups using Laravel's scheduler.
132
protected function schedule(Schedule $schedule) {
133
$date = Carbon::now()->toW3cString();
134
$environment = env('APP_ENV');
135
- $schedule->command("db:backup --database=mysql --destination=s3 --destinationPath=/{$environment}/projectname_{$environment}_{$date} --compression=gzip")->twiceDaily(13,21);
+ $schedule->command(
136
+ "db:backup --database=mysql --destination=s3 --destinationPath=/{$environment}/projectname_{$environment}_{$date} --compression=gzip"
137
+ )->twiceDaily(13,21);
138
}
139
```
140
0 commit comments