From 570b0b014f07fc3890ce0341b64583c56b942a10 Mon Sep 17 00:00:00 2001 From: IceToast Date: Thu, 16 Jun 2022 19:03:59 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=9A=91=EF=B8=8F=20ChargeServer=20C?= =?UTF-8?q?ommand?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Console/Commands/ChargeServers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/ChargeServers.php b/app/Console/Commands/ChargeServers.php index 877cb8a5..769909c3 100644 --- a/app/Console/Commands/ChargeServers.php +++ b/app/Console/Commands/ChargeServers.php @@ -65,7 +65,7 @@ class ChargeServers extends Command $newBillingDate = Carbon::parse($server->last_billed)->addMonth(); break; case 'weekly': - $newBillingDate = Carbon::parse($server->last_billed)->addYear(); + $newBillingDate = Carbon::parse($server->last_billed)->addWeek(); break; case 'daily': $newBillingDate = Carbon::parse($server->last_billed)->addDay();