JwsAuthenticatorTest::testJwsAuthenticator()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
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\Guard;
12
13
use PHPUnit\Framework\TestCase;
14
15
/**
16
 * Class JwsAuthenticatorTest.
17
 *
18
 * @author Jafar Jabr <[email protected]>
19
 */
20
class JwsAuthenticatorTest extends TestCase
21
{
22
    /**
23
     * Test JwsAuthenticator.
24
     */
25
    public function testJwsAuthenticator()
26
    {
27
        $this->assertEquals(1, 1);
28
    }
29
}
30