Passed
Pull Request — master (#380)
by Wilmer
02:35
created

QueryBuilderProvider   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 7
c 1
b 0
f 0
dl 0
loc 21
rs 10
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A buildConditions() 0 5 1
A buildFilterCondition() 0 5 1
A buildWhereExists() 0 5 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Db\Tests\Provider;
6
7
use Yiisoft\Db\Tests\Support\Mock;
8
9
final class QueryBuilderProvider
10
{
11
    public function buildConditions(): array
12
    {
13
        $baseQueryBuilderProvider = new BaseQueryBuilderProvider(new Mock('sqlite'));
0 ignored issues
show
Unused Code introduced by
The call to Yiisoft\Db\Tests\Support\Mock::__construct() has too many arguments starting with 'sqlite'. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

13
        $baseQueryBuilderProvider = new BaseQueryBuilderProvider(/** @scrutinizer ignore-call */ new Mock('sqlite'));

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.

Loading history...
14
15
        return $baseQueryBuilderProvider->buildConditions();
16
    }
17
18
    public function buildFilterCondition(): array
19
    {
20
        $baseQueryBuilderProvider = new BaseQueryBuilderProvider(new Mock('sqlite'));
0 ignored issues
show
Unused Code introduced by
The call to Yiisoft\Db\Tests\Support\Mock::__construct() has too many arguments starting with 'sqlite'. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

20
        $baseQueryBuilderProvider = new BaseQueryBuilderProvider(/** @scrutinizer ignore-call */ new Mock('sqlite'));

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.

Loading history...
21
22
        return $baseQueryBuilderProvider->buildFilterCondition();
23
    }
24
25
    public function buildWhereExists(): array
26
    {
27
        $baseQueryBuilderProvider = new BaseQueryBuilderProvider(new Mock('sqlite'));
0 ignored issues
show
Unused Code introduced by
The call to Yiisoft\Db\Tests\Support\Mock::__construct() has too many arguments starting with 'sqlite'. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

27
        $baseQueryBuilderProvider = new BaseQueryBuilderProvider(/** @scrutinizer ignore-call */ new Mock('sqlite'));

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.

Loading history...
28
29
        return $baseQueryBuilderProvider->buildWhereExists();
30
    }
31
}
32