Passed
Push — master ( 0d1e3a...a8104a )
by Jonas
11:45
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 Staudenmeir\EloquentEagerLimit\Grammars;
4
5
use Illuminate\Database\Query\Grammars\SqlServerGrammar as Base;
6
use Staudenmeir\EloquentEagerLimit\Grammars\Traits\CompilesSqlServerGroupLimit;
7
8
class SqlServerGrammar extends Base
9
{
10
    use CompilesSqlServerGroupLimit;
0 ignored issues
show
Bug introduced by
The trait Staudenmeir\EloquentEage...ilesSqlServerGroupLimit requires the property $groupLimit which is not provided by Staudenmeir\EloquentEage...ammars\SqlServerGrammar.
Loading history...
11
}
12