EscolaLMS/topic-types

View on GitHub
src/Models/Contracts/TopicContentContract.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace EscolaLms\TopicTypes\Models\Contracts;

use Illuminate\Database\Eloquent\Relations\MorphOne;

interface TopicContentContract
{
    public static function rules(): array;

    public function topic(): MorphOne;
}