Passed
Push — master ( fa3bf1...2fa9b0 )
by
unknown
04:14
created

CommandMakerSubscriber::create()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
eloc 0
dl 0
loc 2
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 2
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: thales
5
 * Date: 17/01/2019
6
 * Time: 20:18
7
 */
8
9
namespace Saci\Console\Infrastructure\Domain\Services;
10
11
12
use Saci\Console\Domain\Events\CommandWasCreated;
13
14
class CommandMakerSubscriber implements \Saci\Console\Domain\Services\CommandMakerSubscriber
15
{
16
17
    public function create(CommandWasCreated $commandWasCreated)
18
    {
19
        // TODO: Implement create() method.
20
    }
21
}