Issues (15)

src/Database/Eloquent/Relations/HasOne.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Mpyw\ComposhipsEagerLimit\Database\Eloquent\Relations;
4
5
use Awobaz\Compoships\Database\Eloquent\Relations\HasOne as ComposhipsHasOne;
6
use Staudenmeir\EloquentEagerLimit\Relations\HasLimit;
7
8
/**
9
 * Class HasOne
10
 */
11
class HasOne extends ComposhipsHasOne
12
{
13
    use HasLimit;
0 ignored issues
show
The trait Staudenmeir\EloquentEagerLimit\Relations\HasLimit requires the property $exists which is not provided by Mpyw\ComposhipsEagerLimi...oquent\Relations\HasOne.
Loading history...
14
}
15