Skip to content

Commit 99ec4a2

Browse files
committed
Merge branch '3.0' into 3.1
* 3.0: fixed CS fixed CS fixed form tests [Console] Fix formatting of SymfonyStyle::comment() [Form] fix post max size translation type extension for >= 2.8 removed dots at the end of @param and @return fixed typo
2 parents e736059 + 62769e3 commit 99ec4a2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Crawler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ public function addNode(\DOMNode $node)
337337
*
338338
* @param int $position The position
339339
*
340-
* @return Crawler A new instance of the Crawler with the selected node, or an empty Crawler if it does not exist.
340+
* @return Crawler A new instance of the Crawler with the selected node, or an empty Crawler if it does not exist
341341
*/
342342
public function eq($position)
343343
{
@@ -394,7 +394,7 @@ public function slice($offset = 0, $length = null)
394394
*
395395
* @param \Closure $closure An anonymous function
396396
*
397-
* @return Crawler A Crawler instance with the selected nodes.
397+
* @return Crawler A Crawler instance with the selected nodes
398398
*/
399399
public function reduce(\Closure $closure)
400400
{

Form.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function setValues(array $values)
8585
*
8686
* The returned array does not include file fields (@see getFiles).
8787
*
88-
* @return array An array of field values.
88+
* @return array An array of field values
8989
*/
9090
public function getValues()
9191
{
@@ -106,7 +106,7 @@ public function getValues()
106106
/**
107107
* Gets the file field values.
108108
*
109-
* @return array An array of file field values.
109+
* @return array An array of file field values
110110
*/
111111
public function getFiles()
112112
{
@@ -135,7 +135,7 @@ public function getFiles()
135135
* This method converts fields with the array notation
136136
* (like foo[bar] to arrays) like PHP does.
137137
*
138-
* @return array An array of field values.
138+
* @return array An array of field values
139139
*/
140140
public function getPhpValues()
141141
{
@@ -162,7 +162,7 @@ public function getPhpValues()
162162
* For a compound file field foo[bar] it will create foo[bar][name],
163163
* instead of foo[name][bar] which would be found in $_FILES.
164164
*
165-
* @return array An array of file field values.
165+
* @return array An array of file field values
166166
*/
167167
public function getPhpFiles()
168168
{

0 commit comments

Comments
 (0)