Skip to content

Commit 17c8f6e

Browse files
committed
Fix: Article
1 parent f6f060b commit 17c8f6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Client.php

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

0 commit comments

Comments
 (0)