for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Loom
*
* @copyright Copyright (c) 2014 Warrick Bayman.
* @author Warrick Bayman <[email protected]>
* @license MIT License http://opensource.org/licenses/MIT
*/
namespace Loom;
use Loom\Contracts\LoomInterface;
* Class Loom
* @package Loom
class Loom extends AbstractLoom implements LoomInterface
{
* @param AbstractUnit $unit
public function __construct(AbstractUnit $unit)
$this->ms = $unit->toMilliseconds();
}
* Make a new LoomFactory instance
* @return LoomFactory
public static function make()
return new LoomFactory();