Builder   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 10
c 0
b 0
f 0
ccs 0
cts 4
cp 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A hasColumn() 0 4 1
1
<?php
2
/**
3
 * @author Donii Sergii <[email protected]>
4
 */
5
6
namespace sonrac\Arango\Schema;
7
8
use Illuminate\Database\Schema\Builder as SchemaBuilder;
9
10
/**
11
 * Class Schema
12
 *
13
 * @package sonrac\Arango\Schema
14
 *
15
 * @author  Donii Sergii <[email protected]>
16
 */
17
class Builder extends SchemaBuilder
18
{
19
    /**
20
     * {@inheritdoc}
21
     */
22
    public function hasColumn($table, $column)
23
    {
24
        return true;
25
    }
26
}
27