From e04cf8d83fa0f392f9ce8ee50d94610b7073e73d Mon Sep 17 00:00:00 2001 From: Dan Poltawski Date: Mon, 22 Dec 2014 13:12:48 +0000 Subject: [PATCH] MDL-48653 behat: fix incorrect phpdoc --- lib/tests/behat/behat_general.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/tests/behat/behat_general.php b/lib/tests/behat/behat_general.php index 778f0f9c22d..904e8b04d64 100644 --- a/lib/tests/behat/behat_general.php +++ b/lib/tests/behat/behat_general.php @@ -345,7 +345,8 @@ class behat_general extends behat_base { * * @When /^I click on "(?P(?:[^"]|\\")*)" "(?P[^"]*)" confirming the dialogue$/ * @throws ElementNotFoundException Thrown by behat_base::find - * @param string $link + * @param string $element Element we look for + * @param string $selectortype The type of what we look for */ public function i_click_on_confirming_the_dialogue($element, $selectortype) { $this->i_click_on($element, $selectortype); @@ -357,7 +358,8 @@ class behat_general extends behat_base { * * @When /^I click on "(?P(?:[^"]|\\")*)" "(?P[^"]*)" dismissing the dialogue$/ * @throws ElementNotFoundException Thrown by behat_base::find - * @param string $link + * @param string $element Element we look for + * @param string $selectortype The type of what we look for */ public function i_click_on_dismissing_the_dialogue($element, $selectortype) { $this->i_click_on($element, $selectortype);