*/ class TestMailCommand { /** * The user to send the notification to. * * @var \CachetHQ\Cachet\Models\User */ public $user; /** * Create a new test mail command. * * @param \CachetHQ\Cachet\Models\User $user * * @return void */ public function __construct(User $user) { $this->user = $user; } }