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;
* Class LoomFactory
* @package Loom
class LoomFactory extends AbstractLoomFactory
{
* Create a new Loom instance
* @param AbstractUnit $unit
* @return Loom
protected function createLoom(AbstractUnit $unit)
return new Loom($unit);
}