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:
Pantheon Automation 2015-11-17 13:42:33 -08:00 committed by Greg Anderson
parent 4afb23bbd3
commit 7784f4c23d
929 changed files with 19798 additions and 5304 deletions

View file

@ -15,8 +15,6 @@ namespace Symfony\Component\BrowserKit;
* Cookie represents an HTTP cookie.
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @api
*/
class Cookie
{
@ -56,8 +54,6 @@ class Cookie
* @param bool $secure Indicates that the cookie should only be transmitted over a secure HTTPS connection from the client
* @param bool $httponly The cookie httponly flag
* @param bool $encodedValue Whether the value is encoded or not
*
* @api
*/
public function __construct($name, $value, $expires = null, $path = null, $domain = '', $secure = false, $httponly = true, $encodedValue = false)
{
@ -90,8 +86,6 @@ class Cookie
* @return string The HTTP representation of the Cookie
*
* @throws \UnexpectedValueException
*
* @api
*/
public function __toString()
{
@ -130,8 +124,6 @@ class Cookie
* @return Cookie A Cookie instance
*
* @throws \InvalidArgumentException
*
* @api
*/
public static function fromString($cookie, $url = null)
{
@ -229,8 +221,6 @@ class Cookie
* Gets the name of the cookie.
*
* @return string The cookie name
*
* @api
*/
public function getName()
{
@ -241,8 +231,6 @@ class Cookie
* Gets the value of the cookie.
*
* @return string The cookie value
*
* @api
*/
public function getValue()
{
@ -253,8 +241,6 @@ class Cookie
* Gets the raw value of the cookie.
*
* @return string The cookie value
*
* @api
*/
public function getRawValue()
{
@ -265,8 +251,6 @@ class Cookie
* Gets the expires time of the cookie.
*
* @return string The cookie expires time
*
* @api
*/
public function getExpiresTime()
{
@ -277,8 +261,6 @@ class Cookie
* Gets the path of the cookie.
*
* @return string The cookie path
*
* @api
*/
public function getPath()
{
@ -289,8 +271,6 @@ class Cookie
* Gets the domain of the cookie.
*
* @return string The cookie domain
*
* @api
*/
public function getDomain()
{
@ -301,8 +281,6 @@ class Cookie
* Returns the secure flag of the cookie.
*
* @return bool The cookie secure flag
*
* @api
*/
public function isSecure()
{
@ -313,8 +291,6 @@ class Cookie
* Returns the httponly flag of the cookie.
*
* @return bool The cookie httponly flag
*
* @api
*/
public function isHttpOnly()
{
@ -325,8 +301,6 @@ class Cookie
* Returns true if the cookie has expired.
*
* @return bool true if the cookie has expired, false otherwise
*
* @api
*/
public function isExpired()
{