for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Iris\SaleWrapper;
class Factory
{
const PARTNER = 'Partner';
const VENTURE = 'Venture';
public static function create($name, \Iris\Manager $manager)
$className = 'Iris\SaleWrapper\\' . ucfirst($name);
return new $className($manager);
}