Skip to content

Commit fc4f286

Browse files
committed
removed dots at the end of @param and @return
1 parent 7a559ef commit fc4f286

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
@@ -324,7 +324,7 @@ public function serialize()
324324
*
325325
* @param int $position The position
326326
*
327-
* @return Crawler A new instance of the Crawler with the selected node, or an empty Crawler if it does not exist.
327+
* @return Crawler A new instance of the Crawler with the selected node, or an empty Crawler if it does not exist
328328
*/
329329
public function eq($position)
330330
{
@@ -383,7 +383,7 @@ public function slice($offset = 0, $length = -1)
383383
*
384384
* @param \Closure $closure An anonymous function
385385
*
386-
* @return Crawler A Crawler instance with the selected nodes.
386+
* @return Crawler A Crawler instance with the selected nodes
387387
*/
388388
public function reduce(\Closure $closure)
389389
{

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)