| Current Path : /home/rtorresani/www/vendor/laminas/laminas-view/src/Helper/Service/ |
| Current File : //home/rtorresani/www/vendor/laminas/laminas-view/src/Helper/Service/DoctypeFactory.php |
<?php
declare(strict_types=1);
namespace Laminas\View\Helper\Service;
use Laminas\View\Helper\Doctype;
use Psr\Container\ContainerInterface;
final class DoctypeFactory
{
public function __invoke(ContainerInterface $container): Doctype
{
$helper = new Doctype();
if (! $container->has('config')) {
return $helper;
}
$config = $container->get('config');
if (isset($config['view_helper_config']['doctype'])) {
$helper->setDoctype($config['view_helper_config']['doctype']);
}
return $helper;
}
}