Merge pull request #5081 from NileemaJadhav/CRM-15821-work
[civicrm-core.git] / CRM / Core / Base.php
index f5e85ea3d8ad3c6b988e7850fece6fc3fb110332..de1a5c133cc070ee4cc123261055a194226baba0 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.4                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2013                                |
+ | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  * The Base class of the CRM hierarchy. Currently does not provide
  * from this class. However it includes a few common files
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2013
+ * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
  *
  */
 
 require_once 'CRM/Core/I18n.php';
+
+/**
+ * Class CRM_Core_Base
+ */
 class CRM_Core_Base {
 
   /**
-   * constructor
+   * Constructor.
    */
-  function __construct() {}
-}
+  public function __construct() {
+  }
 
+}