mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Various code cleanup.
This commit is contained in:
@@ -12,18 +12,18 @@ class RegisteredUser extends Mailable
|
||||
/** @var string */
|
||||
public $address;
|
||||
/** @var string */
|
||||
public $ip;
|
||||
public $userIp;
|
||||
|
||||
/**
|
||||
* Create a new message instance.
|
||||
*
|
||||
* @param string $address
|
||||
* @param string $ip
|
||||
* @param string $userIp
|
||||
*/
|
||||
public function __construct(string $address, string $ip)
|
||||
public function __construct(string $address, string $userIp)
|
||||
{
|
||||
$this->address = $address;
|
||||
$this->ip = $ip;
|
||||
$this->userIp = $userIp;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -10,20 +10,20 @@ class RequestedNewPassword extends Mailable
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
/** @var string */
|
||||
public $ip;
|
||||
/** @var string */
|
||||
public $url;
|
||||
/** @var string */
|
||||
public $userIp;
|
||||
|
||||
/**
|
||||
* RequestedNewPassword constructor.
|
||||
*
|
||||
* @param string $url
|
||||
* @param string $ip
|
||||
* @param string $userIp
|
||||
*/
|
||||
public function __construct(string $url, string $ip)
|
||||
public function __construct(string $url, string $userIp)
|
||||
{
|
||||
$this->url = $url;
|
||||
$this->ip = $ip;
|
||||
$this->url = $url;
|
||||
$this->userIp = $userIp;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user