Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/laminas/laminas-view/src/Helper/Service/
Upload File :
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;
    }
}