mirror of
https://github.com/flarum/framework.git
synced 2025-05-08 04:22:27 +08:00
12 lines
217 B
Plaintext
12 lines
217 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Database\Eloquent\Relations;
|
|
|
|
/**
|
|
* @template TRelatedModel of \Illuminate\Database\Eloquent\Model
|
|
* @extends BelongsToMany<TRelatedModel>
|
|
*/
|
|
class MorphToMany extends BelongsToMany
|
|
{
|
|
}
|