Issues (97)

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

Labels
Severity
1
<?php
2
3
namespace Staudenmeir\EloquentJsonRelations\Relations\Postgres;
4
5
use Illuminate\Database\Eloquent\Relations\HasOne as Base;
6
7
class HasOne 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...lations\Postgres\HasOne.
Loading history...
10
}
11