BinarCode / laravel-mailator

Email scheduler for Laravel
MIT License
226 stars 12 forks source link

public const MINUTES_IN_DAY = 60 * 60; Why is it like this? #2574

Closed capricorn05 closed 8 months ago

capricorn05 commented 1 year ago

class ConverterEnum { public const MINUTES_IN_HOUR = 60; public const MINUTES_IN_DAY = 60 60; public const MINUTES_IN_WEEK = 168 60; public const HOURS_IN_DAY = 24; public const HOURS_IN_WEEK = 168; }

binaryk commented 8 months ago

Indeed it's a typo, but when converting back, it uses the same constant, so it doesn't create any problems.