mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-10 12:24:50 +00:00
Add php doc blocks.
This commit is contained in:
@@ -36,12 +36,17 @@ use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Mail\Mailable;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
/**
|
||||
* Sends newly registered user an email message.
|
||||
*
|
||||
* Class RegisteredUser
|
||||
*/
|
||||
class RegisteredUser extends Mailable
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
/** @var string */
|
||||
/** @var string Email address of user */
|
||||
public $address;
|
||||
/** @var string */
|
||||
/** @var string IP address of user */
|
||||
public $ipAddress;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user