fixed @return when returning this or static

This commit is contained in:
Fabien Potencier 2016-12-29 22:43:11 +01:00
parent 0f6e4ab687
commit 2a778c2d16
3 changed files with 4 additions and 4 deletions

View File

@ -187,7 +187,7 @@ class Table
* @param int $columnIndex Column index * @param int $columnIndex Column index
* @param int $width Minimum column width in characters * @param int $width Minimum column width in characters
* *
* @return Table * @return $this
*/ */
public function setColumnWidth($columnIndex, $width) public function setColumnWidth($columnIndex, $width)
{ {
@ -201,7 +201,7 @@ class Table
* *
* @param array $widths * @param array $widths
* *
* @return Table * @return $this
*/ */
public function setColumnWidths(array $widths) public function setColumnWidths(array $widths)
{ {

View File

@ -694,7 +694,7 @@ class Crawler implements \Countable, \IteratorAggregate
* *
* @param string $value The image alt * @param string $value The image alt
* *
* @return Crawler A new instance of Crawler with the filtered list of nodes * @return self A new instance of Crawler with the filtered list of nodes
*/ */
public function selectImage($value) public function selectImage($value)
{ {

View File

@ -109,7 +109,7 @@ class JsonResponse extends Response
* *
* @param string $json * @param string $json
* *
* @return JsonResponse * @return $this
* *
* @throws \InvalidArgumentException * @throws \InvalidArgumentException
*/ */