Skip to content

Commit

Permalink
[RequestHandler] added the RequestHandlerInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Apr 24, 2010
1 parent 0255508 commit 52acc42
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions src/Symfony/Components/RequestHandler/RequestHandlerInterface.php
@@ -0,0 +1,34 @@
<?php

namespace Symfony\Components\RequestHandler;

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

/**
* RequestHandlerInterface.
*
* @package Symfony
* @subpackage Components_RequestHandler
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
interface RequestHandlerInterface
{
/**
* Handles a request to convert it to a response.
*
* @param Request $request A Request instance
* @param Boolean $main Whether this is the main request or not
*
* @return Response $response A Response instance
*
* @throws \Exception When Exception couldn't be caught by event processing
*/
public function handle(Request $request, $main = true);
}

0 comments on commit 52acc42

Please sign in to comment.