diff options
author | David Rothstein <drothstein@gmail.com> | 2016-01-31 19:42:32 -0500 |
---|---|---|
committer | David Rothstein <drothstein@gmail.com> | 2016-01-31 19:42:32 -0500 |
commit | 27e511be2fd829730082dd0e14e2bb2b01915991 (patch) | |
tree | 176ebe598cebc2a515724b2a0ef3ee9b34b81d85 /modules | |
parent | d270faa4da407450203bfa198202fea915914288 (diff) | |
download | brdo-27e511be2fd829730082dd0e14e2bb2b01915991.tar.gz brdo-27e511be2fd829730082dd0e14e2bb2b01915991.tar.bz2 |
Issue #2611274 by felribeiro, joachim, joshi.rohit100, anchal29: missing docs for DrupalWebTestCase::xpath() $arguments param
Diffstat (limited to 'modules')
-rw-r--r-- | modules/simpletest/drupal_web_test_case.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php index bf1e9c31c..aed66fa2a 100644 --- a/modules/simpletest/drupal_web_test_case.php +++ b/modules/simpletest/drupal_web_test_case.php @@ -2584,6 +2584,11 @@ class DrupalWebTestCase extends DrupalTestCase { * * @param $xpath * The xpath string to use in the search. + * @param array $arguments + * An array of arguments with keys in the form ':name' matching the + * placeholders in the query. The values may be either strings or numeric + * values. + * * @return * The return value of the xpath search. For details on the xpath string * format and return values see the SimpleXML documentation, |