Completed
Pull Request — master (#16)
by Alessandro
06:12
created

SystemClock::now()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Fazland\SkebbyRestClient\Clock;
6
7
use DateTimeImmutable;
8
9
class SystemClock implements ClockInterface
10
{
11
    public function now(): DateTimeImmutable
12
    {
13
        return new DateTimeImmutable();
14
    }
15
}
16