openclassify/addons/default/visiosoft/profile-module/src/Events/UserUpdated.php
2021-01-29 15:58:07 +03:00

15 lines
352 B
PHP

<?php namespace Visiosoft\ProfileModule\Events;
class UserUpdated
{
public $oldCustomerInfo;
public $changes;
public $builder;
public function __construct($oldCustomerInfo, $changes, $builder = null)
{
$this->oldCustomerInfo = $oldCustomerInfo;
$this->changes = $changes;
$this->builder = $builder;
}
}