for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Charcoal\Factory;
use \InvalidArgumentException;
// Local namespace dependencies
use \Charcoal\Factory\AbstractFactory;
/**
* The Generic Factory resolves the **class name** from an exact full qualifed name as **type**.
*/
class GenericFactory extends AbstractFactory
{
}