mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
14 lines
235 B
PHP
14 lines
235 B
PHP
<?php
|
|
|
|
namespace Rhumsaa\Uuid\Provider\Time;
|
|
|
|
use Rhumsaa\Uuid\Provider\TimeProviderInterface;
|
|
|
|
class SystemTimeProvider implements TimeProviderInterface
|
|
{
|
|
public function currentTime()
|
|
{
|
|
return gettimeofday();
|
|
}
|
|
}
|