Issues (97)

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

Labels
Severity
1
<?php
2
3
namespace Staudenmeir\EloquentJsonRelations\Relations\Postgres;
4
5
use Illuminate\Database\Eloquent\Relations\HasMany as Base;
6
7
class HasMany extends Base
8
{
9
    use HasOneOrMany;
0 ignored issues
show
The trait Staudenmeir\EloquentJson...s\Postgres\HasOneOrMany requires the property $from which is not provided by Staudenmeir\EloquentJson...ations\Postgres\HasMany.
Loading history...
10
}
11