StatusCommand::getInputCommand()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 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
}