Passed
Push — master ( 00bef5...064b0e )
by Jonas
02:59
created

MySqlGrammar::compileCycle()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 2

Importance

Changes 0
Metric Value
cc 2
eloc 4
c 0
b 0
f 0
nc 2
nop 2
dl 0
loc 9
ccs 5
cts 5
cp 1
crap 2
rs 10
1
<?php
2
3
namespace Staudenmeir\LaravelCte\Query\Grammars;
4
5
use Illuminate\Database\Query\Grammars\MySqlGrammar as Base;
6
use Staudenmeir\LaravelCte\Query\Grammars\Traits\CompilesMySqlExpressions;
7
8
class MySqlGrammar extends Base
9
{
10
    use CompilesMySqlExpressions;
0 ignored issues
show
introduced by
The trait Staudenmeir\LaravelCte\Q...ompilesMySqlExpressions requires some properties which are not provided by Staudenmeir\LaravelCte\Query\Grammars\MySqlGrammar: $unionExpressions, $expressions, $recursionLimit, $from, $unionRecursionLimit
Loading history...
11
}
12