Passed
Push — master ( e1711c...6da277 )
by Jonas
04:38
created

PostgresGrammar

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 3
ccs 0
cts 0
cp 0
c 0
b 0
f 0
wmc 0
1
<?php
2
3
namespace Staudenmeir\LaravelCte\Query\Grammars;
4
5
use Illuminate\Database\Query\Grammars\PostgresGrammar as Base;
6
7
class PostgresGrammar extends Base
8
{
9
    use CompilesExpressions;
0 ignored issues
show
introduced by
The trait Staudenmeir\LaravelCte\Q...ars\CompilesExpressions requires some properties which are not provided by Staudenmeir\LaravelCte\Q...rammars\PostgresGrammar: $expressions, $recursionLimit
Loading history...
10
}
11