Skip to content

Commit a063dd5

Browse files
author
Shawn McCool
committed
update copy
1 parent cfa3842 commit a063dd5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,9 @@ It's possible to schedule backups using Laravel's scheduler.
132132
protected function schedule(Schedule $schedule) {
133133
$date = Carbon::now()->toW3cString();
134134
$environment = env('APP_ENV');
135-
$schedule->command("db:backup --database=mysql --destination=s3 --destinationPath=/{$environment}/projectname_{$environment}_{$date} --compression=gzip")->twiceDaily(13,21);
135+
$schedule->command(
136+
"db:backup --database=mysql --destination=s3 --destinationPath=/{$environment}/projectname_{$environment}_{$date} --compression=gzip"
137+
)->twiceDaily(13,21);
136138
}
137139
```
138140

0 commit comments

Comments
 (0)