Skip to content

Commit 96795fe

Browse files
authored
fix: fixing minutes in days constant (#2587)
1 parent 83d589b commit 96795fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Support/ConverterEnum.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class ConverterEnum
66
{
77
public const MINUTES_IN_HOUR = 60;
8-
public const MINUTES_IN_DAY = 60 * 60;
8+
public const MINUTES_IN_DAY = 60 * 24;
99
public const MINUTES_IN_WEEK = 168 * 60;
1010
public const HOURS_IN_DAY = 24;
1111
public const HOURS_IN_WEEK = 168;

0 commit comments

Comments
 (0)