for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EventEspresso\core\services\factory;
use EventEspresso\core\services\loaders\LoaderInterface;
abstract class Factory implements FactoryInterface
{
/**
* @var LoaderInterface $loader
*/
protected $loader;
* RouteFactory constructor.
*
* @param LoaderInterface $loader
public function __construct(LoaderInterface $loader)
$this->loader = $loader;
}