Builder::hasColumn()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
ccs 0
cts 4
cp 0
crap 2
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