(NFC) (dev/core#878) Simplify copyright header (Civi/*)
[civicrm-core.git] / Civi / Core / DAO / Event / PostUpdate.php
CommitLineData
8498c2b7 1<?php
2/*
3 +--------------------------------------------------------------------+
41498ac5 4 | Copyright CiviCRM LLC. All rights reserved. |
8498c2b7 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 |
8498c2b7 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
8498c2b7 11
12namespace Civi\Core\DAO\Event;
13
14/**
15 * Class PostUpdate
16 * @package Civi\Core\DAO\Event
17 */
18class PostUpdate extends \Symfony\Component\EventDispatcher\Event {
19
20 /**
21 * @var DAO Object
22 */
23 public $object;
24
7fe37828
EM
25 /**
26 * @param $object
27 */
00be9182 28 public function __construct($object) {
8498c2b7 29 $this->object = $object;
30 }
21f8fcf7 31
8498c2b7 32}