Вход Регистрация
Файл: onlinepoisk.wm-scripts.ru/vendor/silex/silex/silex/src/Silex/ControllerResolver.php
Строк: 65
<?php

/*
 * This file is part of the Silex framework.
 *
 * (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 Silex;

use 
SymfonyComponentHttpKernelControllerControllerResolver as BaseControllerResolver;
use 
SymfonyComponentHttpKernelLogLoggerInterface;
use 
SymfonyComponentHttpFoundationRequest;

/**
 * Adds Application as a valid argument for controllers.
 *
 * @author Fabien Potencier <fabien@symfony.com>
 */
class ControllerResolver extends BaseControllerResolver
{
    protected 
$app;

    
/**
     * Constructor.
     *
     * @param Application     $app    An Application instance
     * @param LoggerInterface $logger A LoggerInterface instance
     */
    
public function __construct(Application $appLoggerInterface $logger null)
    {
        
$this->app $app;

        
parent::__construct($logger);
    }

    protected function 
doGetArguments(Request $request$controller, array $parameters)
    {
        foreach (
$parameters as $param) {
            if (
$param->getClass() && $param->getClass()->isInstance($this->app)) {
                
$request->attributes->set($param->getName(), $this->app);

                break;
            }
        }

        return 
parent::doGetArguments($request$controller$parameters);
    }
}
Онлайн: 0
Реклама