Passed
Push — master ( 55f515...20b0bc )
by Ryosuke
12:42
created

SqlServerGrammar::compileRowNumber()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 7
ccs 4
cts 4
cp 1
rs 10
cc 2
nc 2
nop 2
crap 2
1
<?php
2
3
namespace Mpyw\ComposhipsEagerLimit\Database\Query\Grammar;
4
5
use Staudenmeir\EloquentEagerLimit\Grammars\SqlServerGrammar as EagerLimitSqlServerGrammar;
6
7
class SqlServerGrammar extends EagerLimitSqlServerGrammar
8
{
9
    use Concerns\CompilesSqlServerGroupLimitByMultipleColumnPartition;
0 ignored issues
show
Bug introduced by
The trait Mpyw\ComposhipsEagerLimi...MultipleColumnPartition requires the property $groupLimit which is not provided by Mpyw\ComposhipsEagerLimi...rammar\SqlServerGrammar.
Loading history...
10
}
11