dev/core#1093: Add Custom Fields to Logging Tables
[civicrm-core.git] / CRM / Core / Module.php
index f3976d1c8c782ed22201d02de94d2e9352367030..3a7da7a1e1609cc212a1a9d4d69c1dad62791b3c 100644 (file)
@@ -32,8 +32,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2019
- * $Id$
- *
  */
 class CRM_Core_Module {
 
@@ -43,13 +41,17 @@ class CRM_Core_Module {
   public $name;
 
   /**
-   * @var bool, TRUE if fully enabled; FALSE if module exists but is disabled
+   * Is the module enabled.
+   *
+   * @var bool
    */
   public $is_active;
 
   /**
+   * Class constructor.
+   *
    * @param string $name
-   * @param $is_active
+   * @param bool $is_active
    */
   public function __construct($name, $is_active) {
     $this->name = $name;