Вход Регистрация
Файл: onlinepoisk.wm-scripts.ru/vendor/silex/silex/silex/src/Silex/HttpCache.php
Строк: 42
<?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 
SymfonyComponentHttpKernelHttpCacheHttpCache as BaseHttpCache;
use 
SymfonyComponentHttpFoundationRequest;

/**
 * HTTP Cache extension to allow using the run() shortcut.
 *
 * @author Fabien Potencier <fabien@symfony.com>
 */
class HttpCache extends BaseHttpCache
{
    
/**
     * Handles the Request and delivers the Response.
     *
     * @param Request $request The Request object
     */
    
public function run(Request $request null)
    {
        if (
null === $request) {
            
$request Request::createFromGlobals();
        }

        
$response $this->handle($request);
        
$response->send();
        
$this->terminate($request$response);
    }
}
Онлайн: 0
Реклама