Merge pull request #5010 from eileenmcnaughton/rebase2
[civicrm-core.git] / tests / extensions / test.extension.manager.moduletest / moduletest.php
index b08e1e7d2f934764a7cbfe51ca515a804eeb3c94..984a0e36b87c9466f8a27bea5c7cd92c2a225a1f 100644 (file)
@@ -1,35 +1,35 @@
 <?php
 
 /**
- * Implemenation of hook_civicrm_install
+ * Implements civicrm_install
  */
 function moduletest_civicrm_install() {
   CRM_Extension_Manager_ModuleTest::incHookCount('moduletest', 'install');
 }
 
 /**
- * Implemenation of hook_civicrm_postInstall
+ * Implements civicrm_postInstall
  */
 function moduletest_civicrm_postInstall() {
   CRM_Extension_Manager_ModuleTest::incHookCount('moduletest', 'postInstall');
 }
 
 /**
- * Implemenation of hook_civicrm_uninstall
+ * Implements civicrm_uninstall
  */
 function moduletest_civicrm_uninstall() {
   CRM_Extension_Manager_ModuleTest::incHookCount('moduletest', 'uninstall');
 }
 
 /**
- * Implemenation of hook_civicrm_enable
+ * Implements civicrm_enable
  */
 function moduletest_civicrm_enable() {
   CRM_Extension_Manager_ModuleTest::incHookCount('moduletest', 'enable');
 }
 
 /**
- * Implemenation of hook_civicrm_disable
+ * Implements civicrm_disable
  */
 function moduletest_civicrm_disable() {
   CRM_Extension_Manager_ModuleTest::incHookCount('moduletest', 'disable');