Passed
Push — master ( 000b7f...30e7f6 )
by Hector Luis
26:41
created

AuthTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 2
c 1
b 0
f 0
dl 0
loc 5
rs 10
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * Test Suite
6
 * @category    Ticaje
7
 * @package     Ticaje_Connector
8
 * @author      Hector Luis Barrientos <[email protected]>
9
 */
10
11
namespace Ticaje\Connector\Test\Unit\Gateway\Authenticator;
12
13
use Ticaje\Connector\Test\Unit\BaseTest;
14
15
/**
16
 * Class ConnectionTest
17
 * @package Ticaje\Connector\Test\Unit\Gateway\Authenticator
18
 */
19
class AuthTest extends BaseTest
20
{
21
    public function setUp()
22
    {
23
        parent::setUp();
24
    }
25
}
26