Merge pull request #19044 from seamuslee001/dev_drupal_149
[civicrm-core.git] / CRM / Core / Base.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
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 |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
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
ca5cec67 18 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
19 */
20
21require_once 'CRM/Core/I18n.php';
28518c90
EM
22
23/**
24 * Class CRM_Core_Base
25 */
6a488035
TO
26class CRM_Core_Base {
27
28 /**
fe482240 29 * Constructor.
6a488035 30 */
2aa397bc
TO
31 public function __construct() {
32 }
96025800 33
6a488035 34}