mirror of
https://github.com/flarum/framework.git
synced 2025-05-07 12:02:26 +08:00
18 lines
355 B
Plaintext
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();
|
|
}
|