Skip to content

Commit f8c304f

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: removed dots at the end of @param and @return fixed typo
2 parents 805243a + fc4f286 commit f8c304f

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
@@ -320,7 +320,7 @@ public function serialize()
320320
*
321321
* @param int $position The position
322322
*
323-
* @return Crawler A new instance of the Crawler with the selected node, or an empty Crawler if it does not exist.
323+
* @return Crawler A new instance of the Crawler with the selected node, or an empty Crawler if it does not exist
324324
*/
325325
public function eq($position)
326326
{
@@ -379,7 +379,7 @@ public function slice($offset = 0, $length = -1)
379379
*
380380
* @param \Closure $closure An anonymous function
381381
*
382-
* @return Crawler A Crawler instance with the selected nodes.
382+
* @return Crawler A Crawler instance with the selected nodes
383383
*/
384384
public function reduce(\Closure $closure)
385385
{

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)