We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 753e993 commit f7d3e3fCopy full SHA for f7d3e3f
src/Relations/BelongsTo.php
@@ -6,13 +6,14 @@
6
7
use Illuminate\Database\Eloquent\Builder;
8
use Illuminate\Database\Eloquent\Model;
9
+use Illuminate\Database\Eloquent\Relations\BelongsTo as BaseBelongsTo;
10
11
/**
12
* @template TRelatedModel of Model
13
* @template TDeclaringModel of Model
- * @extends \Illuminate\Database\Eloquent\Relations\BelongsTo<TRelatedModel, TDeclaringModel>
14
+ * @extends BaseBelongsTo<TRelatedModel, TDeclaringModel>
15
*/
-class BelongsTo extends \Illuminate\Database\Eloquent\Relations\BelongsTo
16
+class BelongsTo extends BaseBelongsTo
17
{
18
19
* Get the key for comparing against the parent key in "has" query.
0 commit comments