Passed
Push — main ( 537bf7...05af85 )
by Jonas
03:08 queued 38s
created

SqlServerGrammar::compileFirstPathSegment()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
c 0
b 0
f 0
dl 0
loc 5
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Staudenmeir\EloquentEagerLimitXLaravelAdjacencyList\Query\Grammars;
4
5
use Illuminate\Database\Query\Grammars\SqlServerGrammar as Base;
6
7
class SqlServerGrammar extends Base implements EagerLimitGrammar
8
{
9
	// TODO
10
}
11