Skip to content

Commit f7d3e3f

Browse files
authored
Fix CS
1 parent 753e993 commit f7d3e3f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Relations/BelongsTo.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66

77
use Illuminate\Database\Eloquent\Builder;
88
use Illuminate\Database\Eloquent\Model;
9+
use Illuminate\Database\Eloquent\Relations\BelongsTo as BaseBelongsTo;
910

1011
/**
1112
* @template TRelatedModel of Model
1213
* @template TDeclaringModel of Model
13-
* @extends \Illuminate\Database\Eloquent\Relations\BelongsTo<TRelatedModel, TDeclaringModel>
14+
* @extends BaseBelongsTo<TRelatedModel, TDeclaringModel>
1415
*/
15-
class BelongsTo extends \Illuminate\Database\Eloquent\Relations\BelongsTo
16+
class BelongsTo extends BaseBelongsTo
1617
{
1718
/**
1819
* Get the key for comparing against the parent key in "has" query.

0 commit comments

Comments
 (0)