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

PostgresConnection::getDefaultSchemaGrammar()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 1
b 0
f 0
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
}