for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Loom;
/**
* Loom
*
* @copyright Copyright (c) 2015 Warrick Bayman.
* @author Warrick Bayman <[email protected]>
* @license MIT License http://opensource.org/licenses/MIT
*/
class Microseconds extends AbstractUnit
{
* Return the value in milliseconds
* @return int
public function toMilliseconds()
return $this->value / 1000;
}