* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Util\DateTime; /** * Class TimeDefinition defines common time intervals in different formats. */ final class TimeDefinition { public const HOUR_IN_SECONDS = 3600; public const DAY_IN_SECONDS = 86400; /** * Object is not suppose to be initialized as it's responsibility is to define time constants. */ private function __construct() { } }