mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Add php doc blocks.
This commit is contained in:
@@ -1,7 +1,4 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* AdminTestMail.php
|
||||
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
||||
@@ -22,6 +19,9 @@ declare(strict_types=1);
|
||||
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
|
||||
namespace FireflyIII\Mail;
|
||||
|
||||
use Illuminate\Bus\Queueable;
|
||||
@@ -30,14 +30,16 @@ use Illuminate\Queue\SerializesModels;
|
||||
|
||||
/**
|
||||
* Class AdminTestMail.
|
||||
*
|
||||
* Sends a test mail to administrators.
|
||||
*/
|
||||
class AdminTestMail extends Mailable
|
||||
{
|
||||
use Queueable, SerializesModels;
|
||||
|
||||
/** @var string */
|
||||
/** @var string Email address of admin */
|
||||
public $email;
|
||||
/** @var string */
|
||||
/** @var string IP address of admin */
|
||||
public $ipAddress;
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user