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

MySqlGrammar::compileInsertUsing()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 3
dl 0
loc 5
ccs 3
cts 3
cp 1
crap 1
rs 10
c 0
b 0
f 0
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