Passed
Push — develop ( 58ca2f...a1a700 )
by Freddie
09:12
created

SQLiteUserFactory::asPrivileges()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
ccs 2
cts 2
cp 1
cc 1
nc 1
nop 0
crap 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