| Current Path : /home/rtorresani/www/vendor/allure-framework/allure-php-commons/src/Io/ |
| Current File : //home/rtorresani/www/vendor/allure-framework/allure-php-commons/src/Io/SystemClock.php |
<?php
declare(strict_types=1);
namespace Qameta\Allure\Io;
use DateTimeImmutable;
final class SystemClock implements ClockInterface
{
public function now(): DateTimeImmutable
{
return new DateTimeImmutable();
}
}