Merge pull request #5010 from eileenmcnaughton/rebase2
[civicrm-core.git] / tests / extensions / test.extension.manager.moduletest / moduletest.php
index 5e92a003bcd502206b560bc97232249f3d858e25..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');
 }
 
 /**
- * Implementation of hook_civicrm_postInstall
+ * Implementcivicrm_postInstall
  */
 function moduletest_civicrm_postInstall() {
   CRM_Extension_Manager_ModuleTest::incHookCount('moduletest', 'postInstall');
 }
 
 /**
- * Implementation of hook_civicrm_uninstall
+ * Implementcivicrm_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');