mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-11-27 12:55:35 +01:00
19 lines
401 B
PHP
19 lines
401 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Tests\Psalm\LaravelPlugin\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
|
|
final class Image extends Model
|
|
{
|
|
/**
|
|
* Get the owning imageable model.
|
|
*/
|
|
public function imageable(): MorphTo
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
}
|