for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dazzle\Loop;
use Dazzle\Loop\Model\SelectLoop;
use Dazzle\Util\Factory\Factory;
use Dazzle\Util\Factory\FactoryInterface;
class LoopFactory extends Factory implements FactoryInterface
{
/**
*
*/
public function __construct()
parent::__construct();
$factory = $this;
$factory
->define('SelectLoop', function() {
return new SelectLoop();
})
;
}