Passed
Pull Request — master (#372)
by Wilmer
03:00
created

QuoterProvider::simpleColumnNames()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 4
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Db\Tests\Provider;
6
7
final class QuoterProvider
8
{
9
    /**
10
     * @return string[][]
11
     */
12
    public function columnNames(): array
13
    {
14
        return [
15
            ['*', '*'],
16
        ];
17
    }
18
19
    /**
20
     * @return string[][]
21
     */
22
    public function simpleColumnNames(): array
23
    {
24
        return [
25
            ['*', '*', '*'],
26
        ];
27
    }
28
29
    /**
30
     * @return string[][]
31
     */
32
    public function simpleTableNames(): array
33
    {
34
        return [
35
            ['test', 'test', ],
36
        ];
37
    }
38
}
39