BinarCode/laravel-mailator

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

Closed this issue · 1 comments

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;
}

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