Passed
Push — master ( 9fe3b0...ea33af )
by belamov
02:37 queued 21s
created

PostgresConnection   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
dl 0
loc 8
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getDefaultSchemaGrammar() 0 3 1
1
<?php
2
3
namespace Belamov\PostgresRange;
4
5
use Illuminate\Database\Grammar;
6
use Illuminate\Database\PostgresConnection as LaravelPostgresConnection;
7
8
class PostgresConnection extends LaravelPostgresConnection
9
{
10
    /**
11
     * @return Grammar
12
     */
13
    protected function getDefaultSchemaGrammar(): Grammar
14
    {
15
        return $this->withTablePrefix(new PostgresGrammarWithRangeTypes());
16
    }
17
}