KeysGeneratorCommandTest::testCommand()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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