for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebComplete\core\factory;
abstract class EntityFactory extends AbstractFactory
{
/**
* @var string
*/
protected $objectClass;
* @return object
public function create()
return $this->make($this->objectClass);
}