Вход Регистрация
Файл: vendor/symfony/http-kernel/EventListener/AddRequestFormatsListener.php
Строк: 61
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace SymfonyComponentHttpKernelEventListener;

use 
SymfonyComponentEventDispatcherEventSubscriberInterface;
use 
SymfonyComponentHttpKernelEventRequestEvent;
use 
SymfonyComponentHttpKernelKernelEvents;

/**
 * Adds configured formats to each request.
 *
 * @author Gildas Quemener <gildas.quemener@gmail.com>
 *
 * @final
 */
class AddRequestFormatsListener implements EventSubscriberInterface
{
    private array 
$formats;

    public function 
__construct(array $formats)
    {
        
$this->formats $formats;
    }

    
/**
     * Adds request formats.
     */
    
public function onKernelRequest(RequestEvent $event): void
    
{
        
$request $event->getRequest();
        foreach (
$this->formats as $format => $mimeTypes) {
            
$request->setFormat($format$mimeTypes);
        }
    }

    public static function 
getSubscribedEvents(): array
    {
        return [
KernelEvents::REQUEST => ['onKernelRequest'100]];
    }
}
Онлайн: 2
Реклама