src/View/Render/PdfRendererFactory.php
<?php
namespace BoletoZendFramework\View\Render;
use Interop\Container\ContainerInterface;
use Zend\ServiceManager\Factory\FactoryInterface;
class PdfRendererFactory implements FactoryInterface
{
/**
* {@inheritdoc}
*/
public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
{
return new PdfRender();
}
}