Update to Drupal 8.0-dev-2015-11-17. Commits through da81cd220, Tue Nov 17 15:53:49 2015 +0000, Issue #2617224 by Wim Leers: Move around/fix some documentation.
This commit is contained in:
parent
4afb23bbd3
commit
7784f4c23d
929 changed files with 19798 additions and 5304 deletions
18
vendor/symfony/browser-kit/Request.php
vendored
18
vendor/symfony/browser-kit/Request.php
vendored
|
@ -15,8 +15,6 @@ namespace Symfony\Component\BrowserKit;
|
|||
* Request object.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
class Request
|
||||
{
|
||||
|
@ -38,8 +36,6 @@ class Request
|
|||
* @param array $cookies An array of cookies
|
||||
* @param array $server An array of server parameters
|
||||
* @param string $content The raw body data
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function __construct($uri, $method, array $parameters = array(), array $files = array(), array $cookies = array(), array $server = array(), $content = null)
|
||||
{
|
||||
|
@ -56,8 +52,6 @@ class Request
|
|||
* Gets the request URI.
|
||||
*
|
||||
* @return string The request URI
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getUri()
|
||||
{
|
||||
|
@ -68,8 +62,6 @@ class Request
|
|||
* Gets the request HTTP method.
|
||||
*
|
||||
* @return string The request HTTP method
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getMethod()
|
||||
{
|
||||
|
@ -80,8 +72,6 @@ class Request
|
|||
* Gets the request parameters.
|
||||
*
|
||||
* @return array The request parameters
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getParameters()
|
||||
{
|
||||
|
@ -92,8 +82,6 @@ class Request
|
|||
* Gets the request server files.
|
||||
*
|
||||
* @return array The request files
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getFiles()
|
||||
{
|
||||
|
@ -104,8 +92,6 @@ class Request
|
|||
* Gets the request cookies.
|
||||
*
|
||||
* @return array The request cookies
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getCookies()
|
||||
{
|
||||
|
@ -116,8 +102,6 @@ class Request
|
|||
* Gets the request server parameters.
|
||||
*
|
||||
* @return array The request server parameters
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getServer()
|
||||
{
|
||||
|
@ -128,8 +112,6 @@ class Request
|
|||
* Gets the request raw body data.
|
||||
*
|
||||
* @return string The request raw body data.
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
public function getContent()
|
||||
{
|
||||
|
|
Reference in a new issue