StatusCommand   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getInputCommand() 0 4 1
1
<?php
2
/**
3
 * Reddogs (https://github.com/reddogs-at)
4
 *
5
 * @see https://github.com/reddogs-at/reddogs-doctrine-migrations for the canonical source repository
6
 * @license https://github.com/reddogs-at/reddogs-doctrine-migrations/blob/master/LICENSE MIT License
7
 */
8
namespace Reddogs\Doctrine\Migrations;
9
10
use ZF\Console\Route;
11
12
/**
13
 * Command to view the status of a set of module migrations.
14
 */
15
class StatusCommand extends AbstractCommand
16
{
17
    /**
18
     * Get input command
19
     * {@inheritDoc}
20
     * @see \Reddogs\Doctrine\Migrations\AbstractCommand::getInputCommand()
21
     */
22
    public function getInputCommand(Route $route)
23
    {
24
        return 'migrations:status';
25
    }
26
}