Files
php-uuid/src/TimeProvider.php
T
Thibaud Fabre 84123b2060 Remove all env related logic from factory
Defers all environment related decisions to factory initialization
All behavior is customizable through DI, but all deps are initialized to proper default instances
Removes static factory configuration
2014-11-08 12:41:40 +01:00

12 lines
212 B
PHP

<?php
namespace Rhumsaa\Uuid;
interface TimeProvider
{
/**
* @return string[] Array guaranteed to contain "sec" and "usec" components of current timestamp.
*/
public function currentTime();
}