Merge pull request #17871 from seamuslee001/deprecated_jquery
[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 */
20
21 require_once 'CRM/Core/I18n.php';
22
23 /**
24 * Class CRM_Core_Base
25 */
26 class CRM_Core_Base {
27
28 /**
29 * Constructor.
30 */
31 public function __construct() {
32 }
33
34 }