mirror of
https://github.com/flarum/core.git
synced 2025-07-16 14:26:25 +02:00
12 lines
281 B
Plaintext
12 lines
281 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Database\Eloquent\Relations;
|
|
|
|
/**
|
|
* @template TRelatedModel of \Illuminate\Database\Eloquent\Model
|
|
* @template TChildModel of \Illuminate\Database\Eloquent\Model
|
|
* @extends BelongsTo<TRelatedModel, TChildModel>
|
|
*/
|
|
class MorphTo extends BelongsTo
|
|
{}
|