summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-15 23:40:21 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-15 23:40:21 +0000
commit78e4211a5c711c214bf99d1024f6d139db660902 (patch)
treea7c3ef080278fd9746ed80b9d7eef5ec97cd53ec
parent6f1a855a16978bf2202fe00714e43efcd8c9a0da (diff)
downloadbrdo-78e4211a5c711c214bf99d1024f6d139db660902.tar.gz
brdo-78e4211a5c711c214bf99d1024f6d139db660902.tar.bz2
#931762 by duellj: Fixed Missing docblocks in simpletest.install
-rw-r--r--modules/simpletest/simpletest.install5
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/simpletest/simpletest.install b/modules/simpletest/simpletest.install
index cd6196999..e81233639 100644
--- a/modules/simpletest/simpletest.install
+++ b/modules/simpletest/simpletest.install
@@ -29,6 +29,8 @@ function simpletest_uninstall() {
}
/**
+ * Implements hook_requirements().
+ *
* Check that the cURL extension exists for PHP.
*/
function simpletest_requirements($phase) {
@@ -81,6 +83,9 @@ function simpletest_requirements($phase) {
return $requirements;
}
+/**
+ * Implements hook_schema().
+ */
function simpletest_schema() {
$schema['simpletest'] = array(
'description' => 'Stores simpletest messages',