@@ -690,7 +690,7 @@ public function outerHtml(): string
690
690
* Since an XPath expression might evaluate to either a simple type or a \DOMNodeList,
691
691
* this method will return either an array of simple types or a new Crawler instance.
692
692
*
693
- * @return array|Crawler An array of evaluation results or a new Crawler instance
693
+ * @return array|Crawler
694
694
*/
695
695
public function evaluate (string $ xpath )
696
696
{
@@ -800,7 +800,7 @@ public function selectLink(string $value)
800
800
/**
801
801
* Selects images by alt value.
802
802
*
803
- * @return static A new instance of Crawler with the filtered list of nodes
803
+ * @return static
804
804
*/
805
805
public function selectImage (string $ value )
806
806
{
@@ -824,7 +824,7 @@ public function selectButton(string $value)
824
824
/**
825
825
* Returns a Link object for the first node in the list.
826
826
*
827
- * @return Link A Link instance
827
+ * @return Link
828
828
*
829
829
* @throws \InvalidArgumentException If the current node list is empty or the selected node is not instance of DOMElement
830
830
*/
@@ -846,7 +846,7 @@ public function link(string $method = 'get')
846
846
/**
847
847
* Returns an array of Link objects for the nodes in the list.
848
848
*
849
- * @return Link[] An array of Link instances
849
+ * @return Link[]
850
850
*
851
851
* @throws \InvalidArgumentException If the current node list contains non-DOMElement instances
852
852
*/
@@ -867,7 +867,7 @@ public function links()
867
867
/**
868
868
* Returns an Image object for the first node in the list.
869
869
*
870
- * @return Image An Image instance
870
+ * @return Image
871
871
*
872
872
* @throws \InvalidArgumentException If the current node list is empty
873
873
*/
@@ -889,7 +889,7 @@ public function image()
889
889
/**
890
890
* Returns an array of Image objects for the nodes in the list.
891
891
*
892
- * @return Image[] An array of Image instances
892
+ * @return Image[]
893
893
*/
894
894
public function images ()
895
895
{
@@ -908,7 +908,7 @@ public function images()
908
908
/**
909
909
* Returns a Form object for the first node in the list.
910
910
*
911
- * @return Form A Form instance
911
+ * @return Form
912
912
*
913
913
* @throws \InvalidArgumentException If the current node list is empty or the selected node is not instance of DOMElement
914
914
*/
0 commit comments