Issues (97)

src/Relations/Postgres/HasManyThrough.php (1 issue)

Labels
Severity
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
The trait Staudenmeir\EloquentJson...res\HasOneOrManyThrough requires the property $from which is not provided by Staudenmeir\EloquentJson...Postgres\HasManyThrough.
Loading history...
10
}
11