Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace OTPHP;
6
 
7
use DateTimeImmutable;
8
use Psr\Clock\ClockInterface;
9
 
10
/**
11
 * @internal
12
 */
13
final class InternalClock implements ClockInterface
14
{
15
    public function now(): DateTimeImmutable
16
    {
17
        return new DateTimeImmutable();
18
    }
19
}