/opt/alt/php54/usr/share/pear/Symfony/Component/HttpKernel
NameSizeModeActions
Bundle/-0755rm
CacheClearer/-0755rm
CacheWarmer/-0755rm
Config/-0755rm
Controller/-0755rm
DataCollector/-0755rm
Debug/-0755rm
DependencyInjection/-0755rm
Event/-0755rm
EventListener/-0755rm
Exception/-0755rm
Fragment/-0755rm
HttpCache/-0755rm
Log/-0755rm
Profiler/-0755rm
autoloader.php3400644editdlrm
Client.php69820644editdlrm
HttpKernel.php92230644editdlrm
HttpKernelInterface.php13450644editdlrm
Kernel.php237400644editdlrm
KernelEvents.php31870644editdlrm
KernelInterface.php50530644editdlrm
TerminableInterface.php10520644editdlrm
UriSigner.php16880644editdlrm
Edit: /opt/alt/php54/usr/share/pear/Symfony/Component/HttpKernel/TerminableInterface.php (1052B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /** * Terminable extends the Kernel request/response cycle with dispatching a post * response event after sending the response and before shutting down the kernel. * * @author Jordi Boggiano * @author Pierre Minnieur * * @api */ interface TerminableInterface { /** * Terminates a request/response cycle. * * Should be called after sending the response and before shutting down the kernel. * * @param Request $request A Request instance * @param Response $response A Response instance * * @api */ public function terminate(Request $request, Response $response); }