2016-08-03 13:57:01 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* UserIsConfirmed.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-04 23:52:15 -05:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
2016-08-03 13:57:01 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Events;
|
|
|
|
|
|
|
|
use FireflyIII\User;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class UserIsConfirmed
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Events
|
|
|
|
*/
|
|
|
|
class UserIsConfirmed extends Event
|
|
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
|
|
|
|
public $ipAddress;
|
|
|
|
public $user;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @param User $user
|
|
|
|
* @param string $ipAddress
|
|
|
|
*/
|
|
|
|
public function __construct(User $user, string $ipAddress)
|
|
|
|
{
|
|
|
|
$this->user = $user;
|
|
|
|
$this->ipAddress = $ipAddress;
|
|
|
|
}
|
|
|
|
}
|