https://github.com/thesis-php/time-span
https://github.com/thesis-php/time-span
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thesis-php/time-span
- Owner: thesis-php
- License: mit
- Created: 2025-04-19T08:52:52.000Z (about 1 year ago)
- Default Branch: 0.2.x
- Last Pushed: 2025-12-05T11:25:33.000Z (6 months ago)
- Last Synced: 2026-01-11T13:03:40.554Z (5 months ago)
- Language: PHP
- Size: 79.1 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Thesis TimeSpan
[](https://packagist.org/packages/thesis/time-span)
[](https://github.com/thesis-php/time-span/releases)
[](https://codecov.io/gh/thesis-php/time-span/tree/0.2.x)
[](https://dashboard.stryker-mutator.io/reports/github.com/thesis-php/time-span/0.2.x)
## Installation
```shell
composer require thesis/time-span
```
## Usage
```php
use Thesis\Time\TimeSpan;
$delay = TimeSpan::fromSeconds(25.123);
echo $delay->toMilliseconds(); // 25123
```