From 93226e37008290cc3c017402d61301610a39096f Mon Sep 17 00:00:00 2001 From: Eduard Lupacescu Date: Wed, 3 Jul 2024 10:20:43 +0300 Subject: [PATCH] fix: fixing minutes in days constant --- src/Support/ConverterEnum.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Support/ConverterEnum.php b/src/Support/ConverterEnum.php index f23aecc2a99b..4c88ab11bfea 100644 --- a/src/Support/ConverterEnum.php +++ b/src/Support/ConverterEnum.php @@ -5,7 +5,7 @@ class ConverterEnum { public const MINUTES_IN_HOUR = 60; - public const MINUTES_IN_DAY = 60 * 60; + public const MINUTES_IN_DAY = 60 * 24; public const MINUTES_IN_WEEK = 168 * 60; public const HOURS_IN_DAY = 24; public const HOURS_IN_WEEK = 168;