Merge pull request #19766 from WeMoveEU/faster-select2-groups
[civicrm-core.git] / CRM / Report / BAO / HookInterface.php
CommitLineData
c3e3dd65
DS
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
c3e3dd65 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 |
c3e3dd65 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
c3e3dd65
DS
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
c3e3dd65
DS
16 */
17
18/**
19 * Interface class for Report hook query objects
20 */
21class CRM_Report_BAO_HookInterface {
22
74cf4551
EM
23 /**
24 * @param $reportObj
25 * @param $logTables
26 *
27 * @return null
28 */
6b4b11c4 29 public function alterLogTables(&$reportObj, &$logTables) {
c3e3dd65
DS
30 return NULL;
31 }
74cf4551
EM
32
33 /**
34 * @param $reportObj
35 * @param $table
36 *
37 * @return array
95ea96be
EM
38 */
39 public function logDiffClause(&$reportObj, $table) {
be2fb01f 40 return [];
6b4b11c4 41 }
96025800 42
232624b1 43}