ae59397f8aa3950d6dcfb5819a0e2074c72ddccc
[civicrm-core.git] / CRM / Core / Base.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 * The Base class of the CRM hierarchy. Currently does not provide
14 * any useful functionality. As such we dont require anyone to derive
15 * from this class. However it includes a few common files
16 *
17 * @package CRM
18 * @copyright CiviCRM LLC https://civicrm.org/licensing
19 * $Id$
20 *
21 */
22
23 require_once 'CRM/Core/I18n.php';
24
25 /**
26 * Class CRM_Core_Base
27 */
28 class CRM_Core_Base {
29
30 /**
31 * Constructor.
32 */
33 public function __construct() {
34 }
35
36 }