/Nette/Application/IPresenterResponse.php
https://github.com/DocX/nette · PHP · 40 lines · 5 code · 7 blank · 28 comment · 0 complexity · 3fdea6cb062b9991e14046db3b6b6d67 MD5 · raw file
- <?php
- /**
- * Nette Framework
- *
- * Copyright (c) 2004, 2009 David Grudl (http://davidgrudl.com)
- *
- * This source file is subject to the "Nette license" that is bundled
- * with this package in the file license.txt.
- *
- * For more information please see http://nettephp.com
- *
- * @copyright Copyright (c) 2004, 2009 David Grudl
- * @license http://nettephp.com/license Nette license
- * @link http://nettephp.com
- * @category Nette
- * @package Nette\Application
- */
- /*namespace Nette\Application;*/
- /**
- * Any response returned by presenter.
- *
- * @author David Grudl
- * @copyright Copyright (c) 2004, 2009 David Grudl
- * @package Nette\Application
- */
- interface IPresenterResponse
- {
- /**
- * Sends response to output.
- * @return void
- */
- function send();
- }