HasManyThrough
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 3
wmc 0
1
<?php
2
3
namespace Staudenmeir\EloquentJsonRelations\Relations\Postgres;
4
5
use Illuminate\Database\Eloquent\Relations\HasManyThrough as Base;
6
7
class HasManyThrough extends Base
8
{
9
    use HasOneOrManyThrough;
0 ignored issues
show
Bug introduced by
The trait Staudenmeir\EloquentJson...res\HasOneOrManyThrough requires the property $from which is not provided by Staudenmeir\EloquentJson...Postgres\HasManyThrough.
Loading history...
10
}
11