KeysGeneratorCommandTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 3
Bugs 1 Features 0
Metric Value
eloc 2
c 3
b 1
f 0
dl 0
loc 8
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCommand() 0 3 1
1
<?php
2
/*
3
 * This file is part of the Guarded Authentication package.
4
 *
5
 * (c) Jafar Jabr <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Jafar\Bundle\GuardedAuthenticationBundle\Tests\Command;
12
13
/**
14
 * Class KeysGeneratorCommandTest.
15
 *
16
 * @author Jafar Jabr <[email protected]>
17
 */
18
class KeysGeneratorCommandTest
19
{
20
    /**
21
     * Test command.
22
     */
23
    public function testCommand()
24
    {
25
        return true;
26
    }
27
}
28