Merge pull request #17480 from tunbola/email-template-perms
[civicrm-core.git] / Civi / Core / DAO / Event / PreDelete.php
CommitLineData
7b83ea83
FG
1<?php
2/*
3 +--------------------------------------------------------------------+
41498ac5 4 | Copyright CiviCRM LLC. All rights reserved. |
7b83ea83 5 | |
41498ac5
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 |
7b83ea83
FG
9 +--------------------------------------------------------------------+
10 */
11
12namespace Civi\Core\DAO\Event;
13
14/**
15 * Class PreDelete
16 * @package Civi\Core\DAO\Event
17 */
18class PreDelete extends \Symfony\Component\EventDispatcher\Event {
19
20 /**
8d0a3eb6 21 * @var \CRM_Core_DAO
7b83ea83
FG
22 */
23 public $object;
24
25 /**
26 * @param $object
27 */
28 public function __construct($object) {
29 $this->object = $object;
30 }
21f8fcf7 31
7b83ea83 32}