Skip to content

Commit 9d98e50

Browse files
committed
Merge branch '4.4' into 5.2
* 4.4: 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 mark the LazyIterator class as internal fix extracting mixed type-hinted property types keep valid submitted choices when additional choices are submitted
2 parents b03b205 + 17c8f6e commit 9d98e50

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
@@ -311,7 +311,7 @@ public function submit(Form $form, array $values = [], array $serverParameters =
311311
* @param string $button The text content, id, value or name of the form <button> or <input type="submit">
312312
* @param array $fieldValues Use this syntax: ['my_form[name]' => '...', 'my_form[email]' => '...']
313313
* @param string $method The HTTP method used to submit the form
314-
* @param array $serverParameters These values override the ones stored in $_SERVER (HTTP headers must include a HTTP_ prefix as PHP does)
314+
* @param array $serverParameters These values override the ones stored in $_SERVER (HTTP headers must include an HTTP_ prefix as PHP does)
315315
*/
316316
public function submitForm(string $button, array $fieldValues = [], string $method = 'POST', array $serverParameters = []): Crawler
317317
{
@@ -332,7 +332,7 @@ public function submitForm(string $button, array $fieldValues = [], string $meth
332332
* @param string $uri The URI to fetch
333333
* @param array $parameters The Request parameters
334334
* @param array $files The files
335-
* @param array $server The server parameters (HTTP headers are referenced with a HTTP_ prefix as PHP does)
335+
* @param array $server The server parameters (HTTP headers are referenced with an HTTP_ prefix as PHP does)
336336
* @param string $content The raw body data
337337
* @param bool $changeHistory Whether to update the history or not (only used internally for back(), forward(), and reload())
338338
*

0 commit comments

Comments
 (0)