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);
/**
* UndoEmailChangeMail.php
* Copyright (c) 2017 thegrumpydictator@gmail.com
@@ -22,23 +19,30 @@ 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;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
/**
* Class UndoEmailChangeMail
*/
class UndoEmailChangeMail extends Mailable
{
use Queueable, SerializesModels;
/** @var string */
/** @var string IP address of user*/
public $ipAddress;
/** @var string */
/** @var string New email address */
public $newEmail;
/** @var string */
/** @var string Old email address */
public $oldEmail;
/** @var string */
/** @var string URI to undo */
public $uri;
/**