Skip to content

Repository files navigation

getwarp/clock

Enhanced DateTime classes and Clock API implementation

GitHubPackagistInstallationUsage

Installation

Via Composer

composer require getwarp/clock

Usage

DateTime:

useWarp\Clock\DateTimeImmutableValue;
$time = DateTimeImmutableValue::now();
// $time = DateTimeImmutableValue::from('2020-02-02 20:22:02');// $time = DateTimeImmutableValue::from(3 * DateTimeImmutableValue::HOUR); // now + 3 hours\assert($timeinstanceof \DateTimeImmutable);
echo (string)$time;
// 2020-02-02 20:22:02echo\json_encode($time);
// 2020-02-02T20:22:02+00:00

Clock:

useWarp\Clock\FrozenClock;
useWarp\Clock\SystemClock;
$clock = newFrozenClock(SystemClock::fromUTC());
$startedAt = $clock->now();
\sleep(5);
$finishedAt = $clock->now();
\assert($startedAt === $finishedAt);
$clock->reset();

Change log

Please see CHANGELOG for more information on what has changed recently.

Contributing

Report issues and send pull requests in the main Warp repository. Please see contributing guide and code of conduct for details.

Credits

License

The MIT License (MIT). Please see license file for more information.

About

No description, website, or topics provided.

Resources

Code of conduct

Security policy

Stars

1 star

Watchers

1 watching

Forks

Releases

Sponsor this project

Packages

Used by

Contributors

Languages