Matthew Kilgore 05aa62f70c feat: STUBS!
2021-12-01 17:36:36 -05:00

18 lines
355 B
Plaintext

<?php
namespace Illuminate\Database\Eloquent\Relations;
/**
* @template TRelatedModel of \Illuminate\Database\Eloquent\Model
* @extends MorphOneOrMany<TRelatedModel>
*/
class MorphOne extends MorphOneOrMany
{
/**
* Get the results of the relationship.
*
* @phpstan-return ?TRelatedModel
*/
public function getResults();
}