EnableEventCommand::configure()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 11

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 8
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 11
ccs 8
cts 8
cp 1
rs 9.9
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 1
1
<?php
2
3
/*
4
 * This file is part of the XabbuhPandaBundle package.
5
 *
6
 * (c) Christian Flothmann <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Xabbuh\PandaBundle\Command;
13
14
use Symfony\Component\Console\Input\InputArgument;
15
use Symfony\Component\Console\Input\InputInterface;
16
use Symfony\Component\Console\Output\OutputInterface;
17
use Xabbuh\PandaClient\Model\NotificationEvent;
18
use Xabbuh\PandaClient\Model\Notifications;
19
20
/**
21
 * Command for enabling notification events.
22
 *
23
 * @author Christian Flothmann <[email protected]>
24
 */
25
final class EnableEventCommand extends CloudCommand
26
{
27
    protected static $defaultName = 'panda:notifications:enable';
28
    /**
29
     * {@inheritDoc}
30
     */
31 4
    protected function configure()
32
    {
33 4
        $this->setDescription('Enable a notification event');
34 4
        $this->addArgument(
35 4
            'event',
36 4
            InputArgument::REQUIRED,
37 4
            'The event being enabled'
38
        );
39
40 4
        parent::configure();
41 4
    }
42
43
    /**
44
     * {@inheritDoc}
45
     */
46 2
    protected function doExecuteCommand(InputInterface $input, OutputInterface $output)
47
    {
48 2
        $notificationEvent = new NotificationEvent($input->getArgument('event'), true);
49 2
        $notifications = new Notifications();
50 2
        $notifications->addNotificationEvent($notificationEvent);
51 2
        $this->getCloud($input)->setNotifications($notifications);
52 1
    }
53
}
54