Commit 3bfbc38e authored by Fabien Potencier's avatar Fabien Potencier

fixed some phpdoc

parent 95541210
...@@ -239,6 +239,7 @@ class Application extends \Pimple implements HttpKernelInterface, EventSubscribe ...@@ -239,6 +239,7 @@ class Application extends \Pimple implements HttpKernelInterface, EventSubscribe
* Aborts the current request by sending a proper HTTP error. * Aborts the current request by sending a proper HTTP error.
* *
* @param integer $statusCode The HTTP status code * @param integer $statusCode The HTTP status code
* @param string $message The status message
* @param array $headers An array of HTTP headers * @param array $headers An array of HTTP headers
*/ */
public function abort($statusCode, $message = '', array $headers = array()) public function abort($statusCode, $message = '', array $headers = array())
...@@ -318,6 +319,10 @@ class Application extends \Pimple implements HttpKernelInterface, EventSubscribe ...@@ -318,6 +319,10 @@ class Application extends \Pimple implements HttpKernelInterface, EventSubscribe
* Escapes a text for HTML. * Escapes a text for HTML.
* *
* @param string $text The input text to be escaped * @param string $text The input text to be escaped
* @param integer $flags The flags (@see htmlspecialchars)
* @param string $charset The charset
* @param Boolean $doubleEncode Whether to try to avoid double escaping or not
*
* @return string Escaped text * @return string Escaped text
*/ */
public function escape($text, $flags = ENT_COMPAT, $charset = 'UTF-8', $doubleEncode = true) public function escape($text, $flags = ENT_COMPAT, $charset = 'UTF-8', $doubleEncode = true)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment