mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-22 18:55:43 +01:00
51 lines
1.1 KiB
PHP
51 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Bus\Commands\Subscriber;
|
|
|
|
use CachetHQ\Cachet\Models\Subscriber;
|
|
|
|
/**
|
|
* This is the subscribe subscriber command.
|
|
*
|
|
* @author Joseph Cohen <joe@alt-three.com>
|
|
*/
|
|
final class UpdateSubscriberSubscriptionCommand
|
|
{
|
|
/**
|
|
* The subscriber email.
|
|
*
|
|
* @var \CachetHQ\Cachet\Models\Subscriber
|
|
*/
|
|
public $subscriber;
|
|
|
|
/**
|
|
* The subscriptions that we want to add.
|
|
*
|
|
* @var array|null
|
|
*/
|
|
public $subscriptions;
|
|
|
|
/**
|
|
* Create a new subscribe subscriber command instance.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Subscriber $subscriber
|
|
* @param null|array $subscriptions
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($subscriber, $subscriptions = null)
|
|
{
|
|
$this->subscriber = $subscriber;
|
|
$this->subscriptions = $subscriptions;
|
|
}
|
|
}
|