Merge pull request #17480 from tunbola/email-template-perms
[civicrm-core.git] / Civi / Core / DAO / Event / PostDelete.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 namespace Civi\Core\DAO\Event;
13
14 /**
15 * Class PostUpdate
16 * @package Civi\Core\DAO\Event
17 */
18 class PostDelete extends \Symfony\Component\EventDispatcher\Event {
19
20 /**
21 * @var \CRM_Core_DAO
22 */
23 public $object;
24
25 /**
26 * @var mixed
27 */
28 public $result;
29
30 /**
31 * @param $object
32 * @param $result
33 */
34 public function __construct($object, $result) {
35 $this->object = $object;
36 $this->result = $result;
37 }
38
39 }