2017-09-26 01:52:16 -05:00
|
|
|
<?php
|
2018-05-11 03:08:34 -05:00
|
|
|
|
2017-09-26 01:52:16 -05:00
|
|
|
/**
|
|
|
|
* UserChangedEmail.php
|
2018-05-11 03:08:34 -05:00
|
|
|
* Copyright (c) 2018 thegrumpydictator@gmail.com
|
2017-09-26 01:52:16 -05:00
|
|
|
*
|
2017-10-21 01:40:00 -05:00
|
|
|
* This file is part of Firefly III.
|
|
|
|
*
|
|
|
|
* Firefly III is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Firefly III is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2017-12-17 07:41:58 -06:00
|
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
2017-09-26 01:52:16 -05:00
|
|
|
*/
|
|
|
|
|
2018-05-11 03:08:34 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-09-26 01:52:16 -05:00
|
|
|
namespace FireflyIII\Events;
|
|
|
|
|
|
|
|
use FireflyIII\User;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
/**
|
2017-11-15 05:25:49 -06:00
|
|
|
* Class UserChangedEmail.
|
2017-09-26 01:52:16 -05:00
|
|
|
*/
|
|
|
|
class UserChangedEmail extends Event
|
|
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
|
2017-11-15 05:25:49 -06:00
|
|
|
/** @var string */
|
2017-09-26 01:52:16 -05:00
|
|
|
public $ipAddress;
|
2017-11-15 05:25:49 -06:00
|
|
|
/** @var string */
|
2017-09-26 01:52:16 -05:00
|
|
|
public $newEmail;
|
2017-11-15 05:25:49 -06:00
|
|
|
/** @var string */
|
2017-09-26 01:52:16 -05:00
|
|
|
public $oldEmail;
|
|
|
|
/** @var User */
|
|
|
|
public $user;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UserChangedEmail constructor.
|
|
|
|
*
|
|
|
|
* @param User $user
|
|
|
|
* @param string $newEmail
|
|
|
|
* @param string $oldEmail
|
|
|
|
* @param string $ipAddress
|
|
|
|
*/
|
|
|
|
public function __construct(User $user, string $newEmail, string $oldEmail, string $ipAddress)
|
|
|
|
{
|
|
|
|
$this->user = $user;
|
|
|
|
$this->ipAddress = $ipAddress;
|
|
|
|
$this->oldEmail = $oldEmail;
|
|
|
|
$this->newEmail = $newEmail;
|
|
|
|
}
|
2017-11-08 02:05:10 -06:00
|
|
|
}
|