Completed
Push — master ( df3b8c...167ee0 )
by Jafar
02:39
created

KeysGeneratorCommandTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
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
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
14
15
/**
16
 * Class KeysGeneratorCommandTest.
17
 *
18
 * @author Jafar Jabr <[email protected]>
19
 */
20
class KeysGeneratorCommandTest extends KernelTestCase
21
{
22
    /**
23
     * Test command.
24
     */
25
    public function testCommand()
26
    {
27
        return true;
28
    }
29
}
30