EscolaLMS/topic-types

View on GitHub
src/Services/Contracts/TopicTypeServiceContract.php

Summary

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

namespace EscolaLms\TopicTypes\Services\Contracts;

interface TopicTypeServiceContract
{
    public static function sanitizePath(string $path): string;

    public function fixAssetPaths(): array;

    public function fixTopicTypeColumnName(): int;
}