47 lines
1.2 KiB
PHP
47 lines
1.2 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\Handlers\Commands\Subscriber;
|
|
|
|
use CachetHQ\Cachet\Bus\Commands\Subscriber\UnsubscribeSubscriberCommand;
|
|
use CachetHQ\Cachet\Bus\Events\Subscriber\SubscriberHasUnsubscribedEvent;
|
|
use CachetHQ\Cachet\Models\Subscriber;
|
|
|
|
/**
|
|
* This is the unsubscribe subscriber command class.
|
|
*
|
|
* @author Joseph Cohem <joe@alt-three.com>
|
|
* @author Graham Campbell <graham@alt-three.com>
|
|
* @author James Brooks <james@alt-three.com>
|
|
*/
|
|
class UnsubscribeSubscriberCommandHandler
|
|
{
|
|
/**
|
|
* Handle the subscribe customer command.
|
|
*
|
|
* @param \CachetHQ\Cachet\Bus\Commands\Subscriber\UnsubscribeSubscriberCommand $command
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle(UnsubscribeSubscriberCommand $command)
|
|
{
|
|
$subscriber = $command->subscriber;
|
|
|
|
// First remove subscriptions.
|
|
$subscriber->subscriptions()->delete();
|
|
|
|
event(new SubscriberHasUnsubscribedEvent($subscriber));
|
|
|
|
// Then remove the subscriber.
|
|
$subscriber->delete();
|
|
}
|
|
}
|