Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-07-14-13-42-39
[civicrm-core.git] / CRM / Core / CodeGen / BaseTask.php
index a4cd151fb8df3ab3f6b51f3f75111c1fbfaea424..0e731fbcce830aa1c93bf20ed3966bf4c8cd9c30 100644 (file)
@@ -1,13 +1,22 @@
 <?php
 
+/**
+ * Class CRM_Core_CodeGen_BaseTask
+ */
 abstract class CRM_Core_CodeGen_BaseTask implements CRM_Core_CodeGen_ITask {
   protected $config;
 
+  /**
+   *
+   */
   function __construct() {
   }
 
   // TODO: this is the most rudimentary possible hack.  CG config should
   // eventually be made into a first-class object.
+  /**
+   * @param is $config
+   */
   function setConfig($config) {
     $this->config = $config;
     $this->tables = $this->config->tables;