juizmill/BoletoZendFramework

View on GitHub
src/View/Render/PdfRendererFactory.php

Summary

Maintainability
A
0 mins
Test Coverage
<?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();
    }
}