@@ -652,7 +652,7 @@ public function outerHtml(): string
652
652
* Since an XPath expression might evaluate to either a simple type or a \DOMNodeList,
653
653
* this method will return either an array of simple types or a new Crawler instance.
654
654
*
655
- * @return array|Crawler An array of evaluation results or a new Crawler instance
655
+ * @return array|Crawler
656
656
*/
657
657
public function evaluate (string $ xpath )
658
658
{
@@ -762,7 +762,7 @@ public function selectLink(string $value)
762
762
/**
763
763
* Selects images by alt value.
764
764
*
765
- * @return static A new instance of Crawler with the filtered list of nodes
765
+ * @return static
766
766
*/
767
767
public function selectImage (string $ value )
768
768
{
@@ -786,7 +786,7 @@ public function selectButton(string $value)
786
786
/**
787
787
* Returns a Link object for the first node in the list.
788
788
*
789
- * @return Link A Link instance
789
+ * @return Link
790
790
*
791
791
* @throws \InvalidArgumentException If the current node list is empty or the selected node is not instance of DOMElement
792
792
*/
@@ -808,7 +808,7 @@ public function link(string $method = 'get')
808
808
/**
809
809
* Returns an array of Link objects for the nodes in the list.
810
810
*
811
- * @return Link[] An array of Link instances
811
+ * @return Link[]
812
812
*
813
813
* @throws \InvalidArgumentException If the current node list contains non-DOMElement instances
814
814
*/
@@ -829,7 +829,7 @@ public function links()
829
829
/**
830
830
* Returns an Image object for the first node in the list.
831
831
*
832
- * @return Image An Image instance
832
+ * @return Image
833
833
*
834
834
* @throws \InvalidArgumentException If the current node list is empty
835
835
*/
@@ -851,7 +851,7 @@ public function image()
851
851
/**
852
852
* Returns an array of Image objects for the nodes in the list.
853
853
*
854
- * @return Image[] An array of Image instances
854
+ * @return Image[]
855
855
*/
856
856
public function images ()
857
857
{
@@ -870,7 +870,7 @@ public function images()
870
870
/**
871
871
* Returns a Form object for the first node in the list.
872
872
*
873
- * @return Form A Form instance
873
+ * @return Form
874
874
*
875
875
* @throws \InvalidArgumentException If the current node list is empty or the selected node is not instance of DOMElement
876
876
*/
0 commit comments