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

@ -18,8 +18,6 @@ use Symfony\Component\DomCrawler\Field\FormField;
* Form represents an HTML form.
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @api
*/
class Form extends Link implements \ArrayAccess
{
@ -47,8 +45,6 @@ class Form extends Link implements \ArrayAccess
* @param string $baseHref The URI of the <base> used for relative links, but not for empty action
*
* @throws \LogicException if the node is not a button inside a form tag
*
* @api
*/
public function __construct(\DOMElement $node, $currentUri, $method = null, $baseHref = null)
{
@ -74,8 +70,6 @@ class Form extends Link implements \ArrayAccess
* @param array $values An array of field values
*
* @return Form
*
* @api
*/
public function setValues(array $values)
{
@ -92,8 +86,6 @@ class Form extends Link implements \ArrayAccess
* The returned array does not include file fields (@see getFiles).
*
* @return array An array of field values.
*
* @api
*/
public function getValues()
{
@ -115,8 +107,6 @@ class Form extends Link implements \ArrayAccess
* Gets the file field values.
*
* @return array An array of file field values.
*
* @api
*/
public function getFiles()
{
@ -146,8 +136,6 @@ class Form extends Link implements \ArrayAccess
* (like foo[bar] to arrays) like PHP does.
*
* @return array An array of field values.
*
* @api
*/
public function getPhpValues()
{
@ -171,8 +159,6 @@ class Form extends Link implements \ArrayAccess
* (like foo[bar] to arrays) like PHP does.
*
* @return array An array of field values.
*
* @api
*/
public function getPhpFiles()
{
@ -197,8 +183,6 @@ class Form extends Link implements \ArrayAccess
* browser behavior.
*
* @return string The URI
*
* @api
*/
public function getUri()
{
@ -232,8 +216,6 @@ class Form extends Link implements \ArrayAccess
* If no method is defined in the form, GET is returned.
*
* @return string The method
*
* @api
*/
public function getMethod()
{
@ -250,8 +232,6 @@ class Form extends Link implements \ArrayAccess
* @param string $name The field name
*
* @return bool true if the field exists, false otherwise
*
* @api
*/
public function has($name)
{
@ -264,8 +244,6 @@ class Form extends Link implements \ArrayAccess
* @param string $name The field name
*
* @throws \InvalidArgumentException when the name is malformed
*
* @api
*/
public function remove($name)
{
@ -280,8 +258,6 @@ class Form extends Link implements \ArrayAccess
* @return FormField The field instance
*
* @throws \InvalidArgumentException When field is not present in this form
*
* @api
*/
public function get($name)
{
@ -292,8 +268,6 @@ class Form extends Link implements \ArrayAccess
* Sets a named field.
*
* @param FormField $field The field
*
* @api
*/
public function set(FormField $field)
{
@ -304,8 +278,6 @@ class Form extends Link implements \ArrayAccess
* Gets all fields.
*
* @return FormField[] An array of fields
*
* @api
*/
public function all()
{