This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/src/Services/TimeService.php
2014-10-18 18:48:16 +02:00

15 lines
194 B
PHP

<?php
namespace Szurubooru\Services;
class TimeService
{
public function __construct()
{
date_default_timezone_set('UTC');
}
public function getCurrentTime()
{
return date('c');
}
}