| Current Path : /var/www/clients/client3/web2/web/vendor/laminas/laminas-mvc/src/Service/ |
| Current File : /var/www/clients/client3/web2/web/vendor/laminas/laminas-mvc/src/Service/ViewFactory.php |
<?php
/**
* @see https://github.com/laminas/laminas-mvc for the canonical source repository
* @copyright https://github.com/laminas/laminas-mvc/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-mvc/blob/master/LICENSE.md New BSD License
*/
namespace Laminas\Mvc\Service;
use Interop\Container\ContainerInterface;
use Laminas\ServiceManager\Factory\FactoryInterface;
use Laminas\View\Strategy\PhpRendererStrategy;
use Laminas\View\View;
class ViewFactory implements FactoryInterface
{
/**
* @param ContainerInterface $container
* @param string $name
* @param null|array $options
* @return View
*/
public function __invoke(ContainerInterface $container, $name, array $options = null)
{
$view = new View();
$events = $container->get('EventManager');
$view->setEventManager($events);
$container->get(PhpRendererStrategy::class)->attach($events);
return $view;
}
}