1
0
mirror of https://github.com/flarum/core.git synced 2025-07-15 13:56:23 +02:00
Files
php-flarum/php-packages/phpstan/stubs/Illuminate/Database/HasManyThrough.stub
Matthew Kilgore 05aa62f70c feat: STUBS!
2021-12-01 17:36:36 -05:00

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();
}