Add php doc blocks.

This commit is contained in:
James Cole
2017-11-25 15:20:53 +01:00
parent f7b1168e7c
commit 35647a062c
66 changed files with 235 additions and 84 deletions

View File

@@ -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;
/**