Merge pull request #16545 from eileenmcnaughton/part_pend
[civicrm-core.git] / Civi / CCase / CaseChangeListener.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 namespace Civi\CCase;
12
13 /**
14 * Interface CaseChangeListener
15 *
16 * @package Civi\CCase
17 */
18 interface CaseChangeListener {
19
20 /**
21 * @param \Civi\CCase\Event\CaseChangeEvent $event
22 *
23 * @return mixed
24 */
25 public function onCaseChange(\Civi\CCase\Event\CaseChangeEvent $event);
26
27 }