SQLiteUserFactory   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
eloc 4
c 1
b 0
f 0
dl 0
loc 15
rs 10
ccs 6
cts 6
cp 1

3 Methods

Rating   Name   Duplication   Size   Complexity  
A asCreate() 0 3 1
A asDrop() 0 3 1
A asPrivileges() 0 3 1
1
<?php declare(strict_types=1);
2
/*
3
 * This file is part of FlexPHP.
4
 *
5
 * (c) Freddie Gar <[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
namespace FlexPHP\Database\Factories\User;
11
12
final class SQLiteUserFactory extends AbstractUserFactory
13
{
14 2
    public function asCreate(): string
15
    {
16 2
        return '';
17
    }
18
19 4
    public function asDrop(): string
20
    {
21 4
        return '';
22
    }
23
24 25
    public function asPrivileges(): string
25
    {
26 25
        return '';
27
    }
28
}
29