Test Setup Failed
Push — master ( 5cf724...b9960b )
by Roman
14:09
created

Builder   A

Complexity

Total Complexity 9

Size/Duplication

Total Lines 90
Duplicated Lines 26.67 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 0
Metric Value
wmc 9
lcom 1
cbo 3
dl 24
loc 90
rs 10
c 0
b 0
f 0

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace fuitad\LaravelCassandra\Eloquent;
4
5
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
6
7
class Builder extends EloquentBuilder
8
{
9
10
}
11