Skip to content

Commit

Permalink
fix: fixing minutes in days constant
Browse files Browse the repository at this point in the history
  • Loading branch information
binaryk committed Jul 3, 2024
1 parent 83d589b commit 93226e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Support/ConverterEnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 93226e3

Please sign in to comment.