Completed
Push — master ( f0448f...4201d1 )
by Julien
14s
created

RemoveEventCommand::configure()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
nc 1
nop 0
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
namespace TheAentMachine\AentDockerCompose\Command;
4
5
use Symfony\Component\Console\Command\Command;
6
use Symfony\Component\Console\Input\InputArgument;
7
use Symfony\Component\Console\Input\InputInterface;
8
use Symfony\Component\Console\Output\OutputInterface;
9
10
class RemoveEventCommand extends EventCommand
11
{
12
    protected function configure()
13
    {
14
        $this
15
            ->setName(Cst::REMOVE_EVENT)
16
            ->setDescription("An event from aenthill")
17
            ->setHelp('TODO')
18
            ->addArgument('payload', InputArgument::OPTIONAL, "The payload of the event");
19
    }
20
21
    protected function execute(InputInterface $input, OutputInterface $output)
22
    {
23
        // TODO
24
    }
25
}
26