merged branch stof/phpdoc (PR #3332)

Commits
-------

8e34f43 Fixed the phpdoc for the Response class

Discussion
----------

Fixed the phpdoc for the Response class

This adds the missing phpdoc for some return values.
This commit is contained in:
Fabien Potencier 2012-02-12 13:09:50 +01:00
commit 802fe644fb

View File

@ -732,7 +732,7 @@ class Response
/**
* Returns true if the response includes a Vary header.
*
* @return true if the response includes a Vary header, false otherwise
* @return Boolean true if the response includes a Vary header, false otherwise
*
* @api
*/
@ -802,6 +802,8 @@ class Response
// http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
/**
* @return Boolean
*
* @api
*/
public function isInvalid()
@ -810,6 +812,8 @@ class Response
}
/**
* @return Boolean
*
* @api
*/
public function isInformational()
@ -818,6 +822,8 @@ class Response
}
/**
* @return Boolean
*
* @api
*/
public function isSuccessful()
@ -826,6 +832,8 @@ class Response
}
/**
* @return Boolean
*
* @api
*/
public function isRedirection()
@ -834,6 +842,8 @@ class Response
}
/**
* @return Boolean
*
* @api
*/
public function isClientError()
@ -842,6 +852,8 @@ class Response
}
/**
* @return Boolean
*
* @api
*/
public function isServerError()
@ -850,6 +862,8 @@ class Response
}
/**
* @return Boolean
*
* @api
*/
public function isOk()
@ -858,6 +872,8 @@ class Response
}
/**
* @return Boolean
*
* @api
*/
public function isForbidden()
@ -866,6 +882,8 @@ class Response
}
/**
* @return Boolean
*
* @api
*/
public function isNotFound()
@ -874,6 +892,10 @@ class Response
}
/**
* @param string $location
*
* @return Boolean
*
* @api
*/
public function isRedirect($location = null)
@ -882,6 +904,8 @@ class Response
}
/**
* @return Boolean
*
* @api
*/
public function isEmpty()