Passed
Push — master ( b995c8...f308d3 )
by Jonas
08:58 queued 06:15
created

FirebirdConnection   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A query() 0 3 1
1
<?php
2
3
namespace Staudenmeir\LaravelCte\Connections;
4
5
use Staudenmeir\LaravelCte\Query\FirebirdBuilder;
6
use HarryGulliford\Firebird\FirebirdConnection as Base;
7
8
class FirebirdConnection extends Base
9
{
10
    /**
11
     * Get a new query builder instance.
12
     *
13
     * @return \Illuminate\Database\Query\Builder
14
     */
15
    public function query()
16
    {
17
        return new FirebirdBuilder($this);
18
    }
19
}
20