mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
15 lines
352 B
PHP
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;
|
|
}
|
|
} |