Skip to content

Commit 56bcf81

Browse files
committed
Merge branch '5.2' into 5.x
* 5.2: [Workflow] Re-add InvalidTokenConfigurationException for BC Fix PHP 8.1 null values [Console] Fix PHP 8.1 null error for preg_match flag Fix: Article Definition::removeMethodCall should remove all matching calls [HttpFoundation] Fix typo in exception message mark the LazyIterator class as internal fix extracting mixed type-hinted property types [Worflow] Fixed GuardListener when using the new Security system keep valid submitted choices when additional choices are submitted
2 parents 52cd01f + 9d98e50 commit 56bcf81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AbstractBrowser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ public function submit(Form $form, array $values = [], array $serverParameters =
329329
* @param string $button The text content, id, value or name of the form <button> or <input type="submit">
330330
* @param array $fieldValues Use this syntax: ['my_form[name]' => '...', 'my_form[email]' => '...']
331331
* @param string $method The HTTP method used to submit the form
332-
* @param array $serverParameters These values override the ones stored in $_SERVER (HTTP headers must include a HTTP_ prefix as PHP does)
332+
* @param array $serverParameters These values override the ones stored in $_SERVER (HTTP headers must include an HTTP_ prefix as PHP does)
333333
*/
334334
public function submitForm(string $button, array $fieldValues = [], string $method = 'POST', array $serverParameters = []): Crawler
335335
{
@@ -350,7 +350,7 @@ public function submitForm(string $button, array $fieldValues = [], string $meth
350350
* @param string $uri The URI to fetch
351351
* @param array $parameters The Request parameters
352352
* @param array $files The files
353-
* @param array $server The server parameters (HTTP headers are referenced with a HTTP_ prefix as PHP does)
353+
* @param array $server The server parameters (HTTP headers are referenced with an HTTP_ prefix as PHP does)
354354
* @param string $content The raw body data
355355
* @param bool $changeHistory Whether to update the history or not (only used internally for back(), forward(), and reload())
356356
*

0 commit comments

Comments
 (0)