Passed
Push — master ( 37e483...d2fc64 )
by Wilmer
11:53 queued 09:06
created

CommandPDOProvider::bindParamsNonWhere()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 5
rs 10
c 1
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Db\Tests\Provider;
6
7
final class CommandPDOProvider
8
{
9
    public function bindParam(): array
10
    {
11
        $baseCommandPDOProvider = new BaseCommandPDOProvider();
12
13
        return $baseCommandPDOProvider->bindParam();
14
    }
15
16
    public function bindParamsNonWhere(): array
17
    {
18
        $baseCommandPDOProvider = new BaseCommandPDOProvider();
19
20
        return $baseCommandPDOProvider->bindParamsNonWhere();
21
    }
22
}
23