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