Drivers
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 0
eloc 3
c 2
b 0
f 0
dl 0
loc 5
ccs 0
cts 0
cp 0
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * @author enea dhack <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Enea\Authorization\Support;
13
14
class Drivers
15
{
16
    const DATABASE = 'database';
17
18
    const CACHE = 'cache';
19
}
20