Last active
November 9, 2018 16:58
-
-
Save lahaxearnaud/dc08f60e61e7974b5d9a01bb4e7a7795 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Message; | |
use App\Message\Interfaces\Mailer; | |
class ConfirmCommandMailer implements Mailer | |
{ | |
/** | |
* @var int | |
*/ | |
protected $commandId; | |
/** | |
* ConfirmCommandMailer constructor. | |
* @param int $commandId | |
*/ | |
public function __construct(int $commandId) | |
{ | |
$this->commandId = $commandId; | |
} | |
/** | |
* @return int | |
*/ | |
public function getCommandId() :int | |
{ | |
return $this->commandId; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment