Passed
Push — master ( 1618a6...bcda46 )
by Jonas
04:00
created

src/Relations/MorphMany.php (1 issue)

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