mirror of
https://github.com/flarum/framework.git
synced 2025-05-07 20:12:27 +08:00
18 lines
390 B
Plaintext
18 lines
390 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Database\Eloquent\Relations;
|
|
|
|
/**
|
|
* @template TRelatedModel of \Illuminate\Database\Eloquent\Model
|
|
* @extends Relation<TRelatedModel>
|
|
*/
|
|
class HasManyThrough extends Relation
|
|
{
|
|
/**
|
|
* Get the results of the relationship.
|
|
*
|
|
* @phpstan-return \Illuminate\Database\Eloquent\Collection<TRelatedModel>
|
|
*/
|
|
public function getResults();
|
|
}
|